From be1cc38bdb83e6716b08d24cc1201fffc6649311 Mon Sep 17 00:00:00 2001 From: Soispha Date: Thu, 3 Aug 2023 21:34:16 +0200 Subject: Feat(hm/conf/nvim): Add basic nix config [REBASE TARGET] --- .../soispha/config/neovim/nixvim/default.nix | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 home-manager/soispha/config/neovim/nixvim/default.nix (limited to 'home-manager/soispha/config/neovim/nixvim/default.nix') diff --git a/home-manager/soispha/config/neovim/nixvim/default.nix b/home-manager/soispha/config/neovim/nixvim/default.nix new file mode 100644 index 00000000..f216fb05 --- /dev/null +++ b/home-manager/soispha/config/neovim/nixvim/default.nix @@ -0,0 +1,39 @@ +{ + pkgs, + ... +}: { + imports = [ + ./options + ./mappings + ./colorscheme + ./clipboard + ]; + programs.nixvim = { + enable = true; + defaultEditor = true; + + # to install plugins just activate their modules + plugins = { + lsp = { + enable = true; + hls.enable = true; + rust-analyzer.enable = true; + }; + treesitter = { + enable = true; + indent = true; + }; + mini = { + enable = true; + ai.enable = true; + jump.enable = true; + }; + }; + + # Not all plugins have own modules + # You can add missing plugins here + # `pkgs.vimExtraPlugins` is added by the overlay you added at the beginning + # For a list of available plugins, look here: [available plugins](https://github.com/jooooscha/nixpkgs-vim-extra-plugins/blob/main/plugins.md) + extraPlugins = [pkgs.vimExtraPlugins.nightfox-nvim]; + }; +} -- cgit 1.4.1