Compare commits
4 Commits
135932bcf3
...
4a079b4160
Author | SHA1 | Date |
---|---|---|
Sven Vogel | 4a079b4160 | |
Sven Vogel | c17e8cf7aa | |
Sven Vogel | d2979fe139 | |
Sven Vogel | 9316b1907e |
|
@ -142,5 +142,11 @@ return {
|
||||||
"<C-f>",
|
"<C-f>",
|
||||||
"<cmd>Telescope current_buffer_fuzzy_find<CR>",
|
"<cmd>Telescope current_buffer_fuzzy_find<CR>",
|
||||||
{ noremap = true, desc = "Find" },
|
{ noremap = true, desc = "Find" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
{ "n" },
|
||||||
|
"<S-f>",
|
||||||
|
"<cmd>lua vim.lsp.buf.format()<CR>",
|
||||||
|
{ noremap = true, desc = "Format active buffer" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ return {
|
||||||
{
|
{
|
||||||
"VidocqH/lsp-lens.nvim",
|
"VidocqH/lsp-lens.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
vim.api.nvim_set_hl(0, 'LspLens', { link = 'NonText', default = true })
|
||||||
require("lsp-lens").setup({
|
require("lsp-lens").setup({
|
||||||
enable = true,
|
enable = true,
|
||||||
sections = {
|
sections = {
|
||||||
|
@ -11,6 +12,7 @@ return {
|
||||||
git_authors = true,
|
git_authors = true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
vim.api.nvim_set_hl(0, 'LspLens', { link = 'NonText', default = true })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,8 +38,6 @@ return {
|
||||||
function(server_name) -- default handler (optional)
|
function(server_name) -- default handler (optional)
|
||||||
require("lspconfig")[server_name].setup({
|
require("lspconfig")[server_name].setup({
|
||||||
on_attach = function(client, bufnr)
|
on_attach = function(client, bufnr)
|
||||||
-- setup lsp-format
|
|
||||||
require("lsp-format").on_attach(client, bufnr)
|
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
@ -58,9 +56,6 @@ return {
|
||||||
require("lspconfig").gdscript.setup({})
|
require("lspconfig").gdscript.setup({})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'lukas-reineke/lsp-format.nvim',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"jinzhongjia/LspUI.nvim",
|
"jinzhongjia/LspUI.nvim",
|
||||||
branch = "main",
|
branch = "main",
|
||||||
|
|
|
@ -63,6 +63,19 @@ return {
|
||||||
vim.cmd("Mason")
|
vim.cmd("Mason")
|
||||||
end, 100)
|
end, 100)
|
||||||
end
|
end
|
||||||
|
},
|
||||||
|
{
|
||||||
|
function()
|
||||||
|
return ' '
|
||||||
|
end,
|
||||||
|
padding = 0,
|
||||||
|
on_click = function()
|
||||||
|
vim.defer_fn(
|
||||||
|
function()
|
||||||
|
vim.lsp.buf.format()
|
||||||
|
end, 100
|
||||||
|
)
|
||||||
|
end
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
lualine_c = {
|
lualine_c = {
|
||||||
|
|
|
@ -3,7 +3,7 @@ return {
|
||||||
"nvim-tree/nvim-tree.lua",
|
"nvim-tree/nvim-tree.lua",
|
||||||
opts = {
|
opts = {
|
||||||
hijack_cursor = true,
|
hijack_cursor = true,
|
||||||
sync_root_with_cwd = true,
|
sync_root_with_cwd = false,
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
enable = true,
|
enable = true,
|
||||||
show_on_dirs = true,
|
show_on_dirs = true,
|
||||||
|
@ -11,7 +11,7 @@ return {
|
||||||
},
|
},
|
||||||
update_focused_file = {
|
update_focused_file = {
|
||||||
enable = true,
|
enable = true,
|
||||||
update_root = true,
|
update_root = false,
|
||||||
ignore_list = { "help" },
|
ignore_list = { "help" },
|
||||||
},
|
},
|
||||||
modified = {
|
modified = {
|
||||||
|
@ -33,7 +33,7 @@ return {
|
||||||
},
|
},
|
||||||
view = {
|
view = {
|
||||||
signcolumn = "no",
|
signcolumn = "no",
|
||||||
width = 45,
|
width = 30,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue