new changes
This commit is contained in:
parent
5594dcba57
commit
3290095f68
|
@ -47,3 +47,8 @@ vim.api.nvim_create_autocmd('TextYankPost', {
|
|||
vim.highlight.on_yank()
|
||||
end,
|
||||
})
|
||||
|
||||
-- [[ TMUX Shortcuts ]] --
|
||||
vim.keymap.set('n', '<leader>tw', function()
|
||||
vim.fn.system 'tmux split-window -v
|
||||
end, { desc = 'Create a split window in current tmux session' })
|
||||
|
|
|
@ -159,7 +159,7 @@ return {
|
|||
local servers = {
|
||||
-- clangd = {},
|
||||
gopls = {},
|
||||
-- pyright = {},
|
||||
pyright = {},
|
||||
-- rust_analyzer = {},
|
||||
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
||||
--
|
||||
|
@ -216,5 +216,4 @@ return {
|
|||
}
|
||||
end,
|
||||
},
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue