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