Add lsp_signature, update telescope
This commit is contained in:
@@ -13,7 +13,8 @@ return {
|
||||
"zls",
|
||||
"glsl_analyzer",
|
||||
"rust_analyzer",
|
||||
"templ"
|
||||
"templ",
|
||||
"tailwindcss",
|
||||
})
|
||||
|
||||
|
||||
|
||||
13
lua/plugins/lsp_signature.lua
Normal file
13
lua/plugins/lsp_signature.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return {
|
||||
"ray-x/lsp_signature.nvim",
|
||||
event = "InsertEnter",
|
||||
opts = {
|
||||
bind = true,
|
||||
handler_opts = {
|
||||
border = "rounded"
|
||||
},
|
||||
hint_enable = false
|
||||
},
|
||||
-- or use config
|
||||
-- config = function(_, opts) require'lsp_signature'.setup({you options}) end
|
||||
}
|
||||
@@ -15,8 +15,8 @@ return {
|
||||
telescope.setup({
|
||||
pickers = {
|
||||
find_files = {
|
||||
find_command = { "rg", "--files", "--glob", "!**/vendor/*" }
|
||||
}
|
||||
find_command = { "rg", "--files", "--glob", "!**/vendor/*", "--glob", "!*_templ.go" }
|
||||
},
|
||||
},
|
||||
extensions = {
|
||||
["ui-select"] = {
|
||||
|
||||
Reference in New Issue
Block a user