Skip to content

Commit 0993f40

Browse files
committed
feat: add helm-ls
1 parent 3d8de0c commit 0993f40

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/helm_ls.lua
2+
return {
3+
settings = {
4+
["helm-ls"] = {
5+
yamlls = {
6+
path = "yaml-language-server",
7+
},
8+
},
9+
},
10+
}

lua/user/plugins/custom.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@ custom["powerman/vim-plugin-AnsiEsc"] = {
2020
lazy = true,
2121
cmd = "AnsiEsc",
2222
}
23+
custom["towolf/vim-helm"] = {
24+
lazy = true,
25+
-- event = "BufReadPost",
26+
ft = "yaml",
27+
}
2328

2429
return custom

lua/user/settings.lua

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
-- Please check `lua/core/settings.lua` to view the full list of configurable settings
22
local settings = {}
33

4-
settings["colorscheme"] = "catppuccin"
54
settings["transparent_background"] = true
65

7-
settings["disabled_plugins"] = {
8-
"fatih/vim-go",
9-
}
6+
settings["disabled_plugins"] = {}
107

118
return settings

0 commit comments

Comments
 (0)