✨ feat(nvim): prettierd on mason and lsp lens
This commit is contained in:
parent
d25ee1dfda
commit
dba7b5e9fd
4 changed files with 36 additions and 1 deletions
24
.config/nvim/lua/plugins/indent-blankline.lua.bak
Normal file
24
.config/nvim/lua/plugins/indent-blankline.lua.bak
Normal file
|
@ -0,0 +1,24 @@
|
|||
return {
|
||||
{
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
opts = {
|
||||
-- char = "▏",
|
||||
char = "│",
|
||||
filetype_exclude = {
|
||||
"help",
|
||||
"alpha",
|
||||
"dashboard",
|
||||
"neo-tree",
|
||||
"Trouble",
|
||||
"lazy",
|
||||
"mason",
|
||||
"notify",
|
||||
"toggleterm",
|
||||
"lazyterm",
|
||||
},
|
||||
show_trailing_blankline_indent = false,
|
||||
show_current_context = false,
|
||||
},
|
||||
},
|
||||
}
|
9
.config/nvim/lua/plugins/lsp-lens.lua
Normal file
9
.config/nvim/lua/plugins/lsp-lens.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
"VidocqH/lsp-lens.nvim",
|
||||
event = "BufReadPost",
|
||||
config = function()
|
||||
require("lsp-lens").setup()
|
||||
end,
|
||||
},
|
||||
}
|
|
@ -4,6 +4,7 @@ return {
|
|||
opts = {
|
||||
ensure_installed = {
|
||||
"black",
|
||||
"prettierd",
|
||||
"beautysh",
|
||||
"codespell",
|
||||
"csharpier",
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
indent_type = "Spaces"
|
||||
indent_width = 4
|
||||
column_width = 120
|
||||
column_width = 120
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue