diff options
Diffstat (limited to 'nvim/config/config.nix')
| -rw-r--r-- | nvim/config/config.nix | 18 |
1 files changed, 18 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; + }; +} |
