From f3cc663bedca46d176041579fd062f89e25217b3 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Wed, 27 Mar 2024 02:38:10 +0000 Subject: update to nixvim config --- nvim/config/config.nix | 18 ++++++++++++++++++ nvim/config/default.nix | 6 ++++++ 2 files changed, 24 insertions(+) create mode 100644 nvim/config/config.nix create mode 100644 nvim/config/default.nix (limited to 'nvim/config') 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 + ]; +} -- cgit v1.2.3