aboutsummaryrefslogtreecommitdiff
path: root/modules/home/editors/neovim/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/editors/neovim/default.nix')
-rw-r--r--modules/home/editors/neovim/default.nix65
1 files changed, 0 insertions, 65 deletions
diff --git a/modules/home/editors/neovim/default.nix b/modules/home/editors/neovim/default.nix
deleted file mode 100644
index ef97f89..0000000
--- a/modules/home/editors/neovim/default.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-
-let
- inherit (lib) mkEnableOption mkIf optionals;
- cfg = config.nx.editors.neovim;
-in
-{
- options.nx.editors.neovim = {
- enable = mkEnableOption "Neovim editor";
- };
-
- config = mkIf cfg.enable {
- programs.neovim = {
- defaultEditor = true;
- enable = true;
- package = pkgs.neovim-unwrapped;
- extraPackages =
- with pkgs;
- [
- tree-sitter
- git
- ripgrep
- fd
- gcc
- ]
- ++ (optionals true [ pkgs.gopls ])
- ++ (optionals true [
- pkgs.nil
- pkgs.nixfmt
- ])
- ++ (optionals true [ pkgs.lua-language-server ])
- ++ (optionals true [ pkgs.texlab ])
- ++ (optionals true [ pkgs.tinymist ]);
-
- plugins = with pkgs.vimPlugins; [
- gruvbox-nvim
- mini-starter
- gitsigns-nvim
- nvim-autopairs
- telescope-nvim
- fidget-nvim
- plenary-nvim
- nvim-treesitter.withAllGrammars
- nvim-lspconfig
- nvim-cmp
- cmp-nvim-lsp
- cmp-buffer
- cmp-path
- cmp-cmdline
- luasnip
- cmp_luasnip
- lspkind-nvim
- ];
-
- extraConfig = ''
- luafile ${./init.lua}
- '';
- };
- };
-}