From e56ccb5a979d636cd549229dd7b35e36fbcf8bd4 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 4 May 2024 19:14:13 -0400 Subject: [PATCH] refactor(nvim): remove riscv syntax highlight and make nixd happy --- common/home/neovim/default.nix | 246 +++++++++++++++++---------------- flake.lock | 17 --- flake.nix | 21 +-- 3 files changed, 132 insertions(+), 152 deletions(-) diff --git a/common/home/neovim/default.nix b/common/home/neovim/default.nix index 4576136..a74de3b 100644 --- a/common/home/neovim/default.nix +++ b/common/home/neovim/default.nix @@ -6,11 +6,17 @@ coc-stylelintplus, nixd, vimplugin-easytables-src, - vimplugin-riscv-src, ... }: let inherit (config.vars) hostName mainUser neovimIde; inherit (lib) fileContents hasPrefix optionalAttrs optionals removePrefix; + inherit (pkgs) vimPlugins; + + buildPlugin = pname: src: + pkgs.vimUtils.buildVimPlugin { + inherit pname src; + version = src.shortRev; + }; javaSdk = pkgs.temurin-bin-17; coc-stylelintplus-flake = coc-stylelintplus.packages.${pkgs.system}.default; @@ -81,18 +87,21 @@ in { viAlias = true; vimAlias = true; - extraPackages = with pkgs; ([ + extraPackages = + (with pkgs; [ bat gcc - ] - ++ optionals neovimIde [ - clang-tools - nodejs_latest - nodePackages.npm - nodePackages.neovim - gradle - nixdPkg - ]); + ]) + ++ (optionals neovimIde [ + nixdPkg + ] + ++ (with pkgs; [ + clang-tools + nodejs_latest + nodePackages.npm + nodePackages.neovim + gradle + ])); extraPython3Packages = ps: optionals neovimIde [ @@ -186,126 +195,121 @@ in { extraConfig = fileContents ./base.vim; extraLuaConfig = fileContents ./base.lua; - plugins = with pkgs.vimPlugins; - ([ - fzfWrapper - fzf-vim - fugitive + plugins = + [ + vimPlugins.fzfWrapper + vimPlugins.fzf-vim + vimPlugins.fugitive - { - plugin = dracula-nvim.overrideAttrs { - src = nvim-theme-src; - }; - type = "viml"; - config = fileContents ./plugins/dracula.vim; - } - { - plugin = todo-comments-nvim; - type = "lua"; - config = - /* - lua - */ - ''require('todo-comments').setup()''; - } - { - plugin = gitsigns-nvim; - type = "lua"; - config = fileContents ./plugins/gitsigns.lua; - } - { - plugin = indent-blankline-nvim; - type = "lua"; - config = fileContents ./plugins/indent.lua; - } - { - plugin = mini-nvim; - type = "lua"; - config = fileContents ./plugins/mini.lua; - } - { - plugin = codewindow-nvim; - type = "lua"; - config = fileContents ./plugins/codewindow.lua; - } - ] - ++ optionals neovimIde [ - markdown-preview-nvim + { + plugin = vimPlugins.dracula-nvim.overrideAttrs { + src = nvim-theme-src; + }; + type = "viml"; + config = fileContents ./plugins/dracula.vim; + } + { + plugin = vimPlugins.todo-comments-nvim; + type = "lua"; + config = + /* + lua + */ + ''require('todo-comments').setup()''; + } + { + plugin = vimPlugins.gitsigns-nvim; + type = "lua"; + config = fileContents ./plugins/gitsigns.lua; + } + { + plugin = vimPlugins.indent-blankline-nvim; + type = "lua"; + config = fileContents ./plugins/indent.lua; + } + { + plugin = vimPlugins.mini-nvim; + type = "lua"; + config = fileContents ./plugins/mini.lua; + } + { + plugin = vimPlugins.codewindow-nvim; + type = "lua"; + config = fileContents ./plugins/codewindow.lua; + } + ] + ++ optionals neovimIde [ + vimPlugins.markdown-preview-nvim - # Coc configured - coc-clangd - coc-cmake - coc-css - coc-eslint - coc-java - coc-sh - coc-stylelintplus-flake - { - plugin = coc-snippets; - type = "viml"; - config = fileContents ./plugins/snippets.vim; - } + # Coc configured + vimPlugins.coc-clangd + vimPlugins.coc-cmake + vimPlugins.coc-css + vimPlugins.coc-eslint + vimPlugins.coc-java + vimPlugins.coc-sh + coc-stylelintplus-flake + { + plugin = vimPlugins.coc-snippets; + type = "viml"; + config = fileContents ./plugins/snippets.vim; + } - ## Lua - coc-sumneko-lua - neodev-nvim + ## Lua + vimPlugins.coc-sumneko-lua + vimPlugins.neodev-nvim - ## Fzf - coc-fzf + ## Fzf + vimPlugins.coc-fzf - coc-highlight - coc-json - coc-pyright - coc-vimlsp - coc-yaml - coc-toml - coc-markdownlint - coc-tsserver + vimPlugins.coc-highlight + vimPlugins.coc-json + vimPlugins.coc-pyright + vimPlugins.coc-vimlsp + vimPlugins.coc-yaml + vimPlugins.coc-toml + vimPlugins.coc-markdownlint + vimPlugins.coc-tsserver - { - plugin = nvim-autopairs; - type = "lua"; - config = fileContents ./plugins/autopairs.lua; - } - { - plugin = lualine-nvim; - type = "lua"; - config = fileContents ./plugins/lualine.lua; - } - { - plugin = neo-tree-nvim; - type = "viml"; - config = '' - ${fileContents ./plugins/neotree.vim} + { + plugin = vimPlugins.nvim-autopairs; + type = "lua"; + config = fileContents ./plugins/autopairs.lua; + } + { + plugin = vimPlugins.lualine-nvim; + type = "lua"; + config = fileContents ./plugins/lualine.lua; + } + { + plugin = vimPlugins.neo-tree-nvim; + type = "viml"; + config = '' + ${fileContents ./plugins/neotree.vim} - lua << EOF - ${fileContents ./plugins/neotree.lua} - EOF - ''; - } - (pkgs.vimUtils.buildVimPlugin { - name = "riscv-asm"; - version = vimplugin-riscv-src.shortRev; - src = vimplugin-riscv-src; - }) - { - plugin = pkgs.vimUtils.buildVimPlugin { - name = "easytables-nvim"; - version = vimplugin-easytables-src.shortRev; - src = vimplugin-easytables-src; - }; - type = "lua"; - config = ''require("easytables").setup();''; - } - ]) + lua << EOF + ${fileContents ./plugins/neotree.lua} + EOF + ''; + } + { + plugin = buildPlugin "easytables-nvim" vimplugin-easytables-src; + type = "lua"; + config = + /* + lua + */ + ''require('easytables').setup();''; + } + ] # Treesitter - ++ (with pkgs.vimPlugins; [ - nvim-treesitter-context - nvim-treesitter-textobjects + ++ [ + vimPlugins.nvim-treesitter-context + vimPlugins.nvim-treesitter-textobjects { type = "viml"; config = fileContents ./plugins/treesitter.vim; - plugin = nvim-treesitter.withPlugins (p: [ + plugin = vimPlugins.nvim-treesitter.withPlugins (p: [ p.awk p.bash p.c @@ -376,7 +380,7 @@ in { p.yaml ]); } - ]); + ]; }; }; } diff --git a/flake.lock b/flake.lock index 668a387..9d83b5c 100644 --- a/flake.lock +++ b/flake.lock @@ -1731,7 +1731,6 @@ "touch-gestures-src": "touch-gestures-src", "trash-d-src": "trash-d-src", "vimplugin-easytables-src": "vimplugin-easytables-src", - "vimplugin-riscv-src": "vimplugin-riscv-src", "wpaperd": "wpaperd", "xresources-theme-src": "xresources-theme-src" } @@ -2053,22 +2052,6 @@ "type": "github" } }, - "vimplugin-riscv-src": { - "flake": false, - "locked": { - "lastModified": 1713286691, - "narHash": "sha256-LGEjiJnqSUYFWGw5Elplfw4X6hQpNrkLMnaZpRzKmpg=", - "owner": "henry-hsieh", - "repo": "riscv-asm-vim", - "rev": "8f8271338a7dec472c11cceac2195dc812e21255", - "type": "github" - }, - "original": { - "owner": "henry-hsieh", - "repo": "riscv-asm-vim", - "type": "github" - } - }, "wlroots": { "flake": false, "locked": { diff --git a/flake.nix b/flake.nix index dbbf7ce..31a9f2c 100644 --- a/flake.nix +++ b/flake.nix @@ -331,6 +331,13 @@ owner = "nix-community"; repo = "nixd"; }; + + vimplugin-easytables-src = { + type = "github"; + owner = "Myzel394"; + repo = "easytables.nvim"; + flake = false; + }; # # Nix tools @@ -407,20 +414,6 @@ repo = "curseforge-server-downloader"; flake = false; }; - - vimplugin-riscv-src = { - type = "github"; - owner = "henry-hsieh"; - repo = "riscv-asm-vim"; - flake = false; - }; - - vimplugin-easytables-src = { - type = "github"; - owner = "Myzel394"; - repo = "easytables.nvim"; - flake = false; - }; ## ## Overlays