diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-03-27 02:38:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-27 02:38:10 +0000 |
| commit | f3cc663bedca46d176041579fd062f89e25217b3 (patch) | |
| tree | b41644ca444b474d2815a55609d0f1b089d64c8e /nvim/config | |
| parent | 85baf135eea17eeaae9da6a9d3268fa6de5f3b0d (diff) | |
update to nixvim config
Diffstat (limited to 'nvim/config')
| -rw-r--r-- | nvim/config/config.nix | 18 | ||||
| -rw-r--r-- | nvim/config/default.nix | 6 |
2 files changed, 24 insertions, 0 deletions
diff --git a/nvim/config/config.nix b/nvim/config/config.nix new file mode 100644 index 0000000..d7d0f5b --- /dev/null +++ b/nvim/config/config.nix @@ -0,0 +1,18 @@ +{ + colorschemes.gruvbox.enable = true; + + plugins = { + lsp = { + enable = true; + servers = { + tsserver.enable = true; + lua-ls.enable = true; + rust-analyzer.enable = true; + }; + }; + lualine.enable = true; + treesitter.enable = true; + telescope.enable = true; + rust-tools.enable = true; + }; +} diff --git a/nvim/config/default.nix b/nvim/config/default.nix new file mode 100644 index 0000000..98f387f --- /dev/null +++ b/nvim/config/default.nix @@ -0,0 +1,6 @@ +{ + # Import all your configuration modules here + imports = [ + ./config.nix + ]; +} |
