1
Fork 0

Got tmux to act the way I want on startup let's goooo

This commit is contained in:
Matei Adriel 2022-12-04 07:56:20 +01:00
parent 01ee066c62
commit 32b53a7fd6
21 changed files with 171 additions and 73 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -4,8 +4,8 @@ local M = {}
function M.setup()
require('lean').setup {
abbreviations = { builtin = true, cmp = true },
lsp = { on_attach = lspconfig.on_attach },
lsp3 = { on_attach = lspconfig.on_attach },
lsp = { on_attach = lspconfig.on_attach, capabilities = lspconfig.capabilities },
lsp3 = false,
mappings = true
}
end