1
0
Fork 0

nvim: use dotfiles extra for bash ls

This commit is contained in:
Luca Bilke 2024-10-17 11:18:43 +02:00
parent 890dc7638e
commit e97ead5b43
Signed by: luca
GPG Key ID: F6E11C9BAA7C82F5
3 changed files with 2 additions and 9 deletions

View File

@ -46,6 +46,7 @@ require("lazy").setup({
{ import = "lazyvim.plugins.extras.test.core" },
{ import = "lazyvim.plugins.extras.ui.mini-indentscope" },
{ import = "lazyvim.plugins.extras.ui.treesitter-context" },
{ import = "lazyvim.plugins.extras.util.dot" },
{ import = "plugins" },
},
defaults = {

View File

@ -5,6 +5,7 @@
local unmap = vim.api.nvim_del_keymap
local map = vim.keymap.set
-- TODO: Also remove which-key entries
unmap("n", "<Leader>uL")
unmap("n", "<Leader>ul")

View File

@ -22,15 +22,6 @@ return {
},
},
},
{
"williamboman/mason.nvim",
optional = true,
opts = {
ensure_installed = {
"bash-language-server",
},
},
},
{
"neovim/nvim-lspconfig",
optional = true,