Compare commits

...

3 Commits

Author SHA1 Message Date
David JULIEN ccd53951ac
Merge branch 'dev' into venus
nvim: rename lua LSP server
        add mini.indentscope
2023-02-12 19:25:49 +01:00
David JULIEN 475ed9bb31 [nvim] feat: add mini.indentscope 2023-02-12 18:42:36 +01:00
David JULIEN 306a6ef1da [nvim] fix: rename lua LSP server 2023-02-12 18:42:25 +01:00
3 changed files with 17 additions and 1 deletions

View File

@ -24,5 +24,21 @@ return {
"echasnovski/mini.pairs",
version = "*",
config = function() require("mini.pairs").setup() end,
},
{
"echasnovski/mini.indentscope",
version = "*",
opts = function()
local plugin = require("mini.indentscope")
return {
draw = {
animation = plugin.gen_animation.none()
}
}
end,
config = function(_, opts)
require("mini.indentscope").setup(opts)
end,
}
}

View File

@ -9,7 +9,7 @@ _G.lsp_root_dir = vim.fn.stdpath("data") .. "/mason/bin"
local servers = {
"clangd",
"rust_analyzer",
"sumneko_lua",
"lua_ls",
"texlab",
}