diff --git a/README.md b/README.md index 645d8a8..63c9e4c 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ This repository contains the configuration for NixVim, a Neovim configuration ma - `lsp.nix`: Configures the Neovim LSP client. - `conform.nix`: Configures the Conform plugin for automatic code formatting. - `fidget.nix`: Configures the Fidget plugin for displaying LSP diagnostics in the status line. +- `vim-helm.nix`: Configures Vim-Helm plugin for helm template syntax ## Git diff --git a/config/default.nix b/config/default.nix index bfa3dc7..708e060 100644 --- a/config/default.nix +++ b/config/default.nix @@ -31,10 +31,11 @@ _: { ./plugins/ui/lualine.nix ./plugins/ui/startup.nix - # LSP + # LSP and formatting ./plugins/lsp/lsp.nix ./plugins/lsp/conform.nix ./plugins/lsp/fidget.nix + ./plugins/lsp/vim-helm.nix # Git ./plugins/git/lazygit.nix diff --git a/config/plugins/lsp/vim-helm.nix b/config/plugins/lsp/vim-helm.nix new file mode 100644 index 0000000..ceb2729 --- /dev/null +++ b/config/plugins/lsp/vim-helm.nix @@ -0,0 +1,5 @@ +_: { + plugins.helm = { + enable = true; + }; +}