Commit after update and format
This commit is contained in:
parent
f9ac1bae40
commit
465b69fe3a
27
init.lua
27
init.lua
|
@ -137,17 +137,7 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{ "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} },
|
||||||
-- Add indentation guides even on blank lines
|
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
|
||||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
||||||
-- See `:help indent_blankline.txt`
|
|
||||||
opts = {
|
|
||||||
char = '┊',
|
|
||||||
show_trailing_blankline_indent = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
-- "gc" to comment visual regions/lines
|
-- "gc" to comment visual regions/lines
|
||||||
{ 'numToStr/Comment.nvim', opts = {} },
|
{ 'numToStr/Comment.nvim', opts = {} },
|
||||||
|
|
||||||
|
@ -204,6 +194,13 @@ require('lazy').setup({
|
||||||
'ldelossa/litee.nvim' }
|
'ldelossa/litee.nvim' }
|
||||||
},
|
},
|
||||||
{ 'tpope/vim-abolish' },
|
{ 'tpope/vim-abolish' },
|
||||||
|
{
|
||||||
|
"kdheepak/lazygit.nvim",
|
||||||
|
-- optional for floating window border decoration
|
||||||
|
dependencies = {
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
{ import = 'custom.plugins' },
|
{ import = 'custom.plugins' },
|
||||||
}, {})
|
}, {})
|
||||||
|
@ -703,8 +700,8 @@ local util = require('lspconfig.util')
|
||||||
if not configs.helm_ls then
|
if not configs.helm_ls then
|
||||||
configs.helm_ls = {
|
configs.helm_ls = {
|
||||||
default_config = {
|
default_config = {
|
||||||
cmd = {"helm_ls", "serve"},
|
cmd = { "helm_ls", "serve" },
|
||||||
filetypes = {'helm'},
|
filetypes = { 'helm' },
|
||||||
root_dir = function(fname)
|
root_dir = function(fname)
|
||||||
return util.root_pattern('Chart.yaml')(fname)
|
return util.root_pattern('Chart.yaml')(fname)
|
||||||
end,
|
end,
|
||||||
|
@ -713,8 +710,8 @@ if not configs.helm_ls then
|
||||||
end
|
end
|
||||||
|
|
||||||
lspconfig.helm_ls.setup {
|
lspconfig.helm_ls.setup {
|
||||||
filetypes = {"helm"},
|
filetypes = { "helm" },
|
||||||
cmd = {"helm_ls", "serve"},
|
cmd = { "helm_ls", "serve" },
|
||||||
}
|
}
|
||||||
|
|
||||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||||
|
|
Loading…
Reference in New Issue