feat: add vim-helm (#7)

Add the Vim-helm plugin
This commit is contained in:
Roel de Cort 2024-06-22 14:01:25 +02:00 committed by GitHub
parent 1465a19ce2
commit 5112946501
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

View file

@ -44,6 +44,7 @@ This repository contains the configuration for NixVim, a Neovim configuration ma
- `lsp.nix`: Configures the Neovim LSP client. - `lsp.nix`: Configures the Neovim LSP client.
- `conform.nix`: Configures the Conform plugin for automatic code formatting. - `conform.nix`: Configures the Conform plugin for automatic code formatting.
- `fidget.nix`: Configures the Fidget plugin for displaying LSP diagnostics in the status line. - `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 ## Git

View file

@ -31,10 +31,11 @@ _: {
./plugins/ui/lualine.nix ./plugins/ui/lualine.nix
./plugins/ui/startup.nix ./plugins/ui/startup.nix
# LSP # LSP and formatting
./plugins/lsp/lsp.nix ./plugins/lsp/lsp.nix
./plugins/lsp/conform.nix ./plugins/lsp/conform.nix
./plugins/lsp/fidget.nix ./plugins/lsp/fidget.nix
./plugins/lsp/vim-helm.nix
# Git # Git
./plugins/git/lazygit.nix ./plugins/git/lazygit.nix

View file

@ -0,0 +1,5 @@
_: {
plugins.helm = {
enable = true;
};
}