remove ansible-ls

This commit is contained in:
Alexander Navarro 2025-07-23 16:46:44 -04:00
parent 07305dc89f
commit 59656e019f
2 changed files with 9 additions and 4 deletions

View file

@ -132,8 +132,6 @@ vim.filetype.add({
log = "log", log = "log",
conf = "conf", conf = "conf",
env = "dotenv", env = "dotenv",
yml = 'yaml.ansible',
yaml = 'yaml.ansible',
}, },
-- Detect and apply filetypes based on the entire filename -- Detect and apply filetypes based on the entire filename
filename = { filename = {
@ -155,7 +153,6 @@ vim.filetype.add({
-- │ LSP │ -- │ LSP │
-- ╰─────────────────────────────────────────────────────────╯ -- ╰─────────────────────────────────────────────────────────╯
vim.lsp.enable({ vim.lsp.enable({
"ansiblels",
"bashls", "bashls",
"lua_ls", "lua_ls",
"nushell", "nushell",

View file

@ -1,4 +1,4 @@
return { return { {
"kristijanhusak/vim-dadbod-ui", "kristijanhusak/vim-dadbod-ui",
dependencies = { dependencies = {
{ "tpope/vim-dadbod", lazy = true }, { "tpope/vim-dadbod", lazy = true },
@ -18,4 +18,12 @@ return {
vim.g.db_ui_use_nerd_fonts = 1 vim.g.db_ui_use_nerd_fonts = 1
vim.g.db_ui_force_echo_notifications = 1 vim.g.db_ui_force_echo_notifications = 1
end, end,
},
{
'davesavic/dadbod-ui-yank',
dependencies = { 'kristijanhusak/vim-dadbod-ui' },
config = function()
require('dadbod-ui-yank').setup()
end,
}
} }