Compare commits
No commits in common. "4a079b41604557d26471fc3fd60b3f460988a6f3" and "135932bcf3a1cc6d9786b2c231ffee4de969efc4" have entirely different histories.
4a079b4160
...
135932bcf3
|
@ -142,11 +142,5 @@ 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,7 +2,6 @@ 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 = {
|
||||||
|
@ -12,7 +11,6 @@ return {
|
||||||
git_authors = true,
|
git_authors = true,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
vim.api.nvim_set_hl(0, 'LspLens', { link = 'NonText', default = true })
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,8 @@ 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,
|
||||||
|
@ -56,6 +58,9 @@ 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,19 +63,6 @@ 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 = false,
|
sync_root_with_cwd = true,
|
||||||
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 = false,
|
update_root = true,
|
||||||
ignore_list = { "help" },
|
ignore_list = { "help" },
|
||||||
},
|
},
|
||||||
modified = {
|
modified = {
|
||||||
|
@ -33,7 +33,7 @@ return {
|
||||||
},
|
},
|
||||||
view = {
|
view = {
|
||||||
signcolumn = "no",
|
signcolumn = "no",
|
||||||
width = 30,
|
width = 45,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue