Skip to content

Commit 3290095

Browse files
committed
new changes
1 parent 5594dcb commit 3290095

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

lua/keymaps.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ vim.api.nvim_create_autocmd('TextYankPost', {
4747
vim.highlight.on_yank()
4848
end,
4949
})
50+
51+
-- [[ TMUX Shortcuts ]] --
52+
vim.keymap.set('n', '<leader>tw', function()
53+
vim.fn.system 'tmux split-window -v
54+
end, { desc = 'Create a split window in current tmux session' })

lua/kickstart/plugins/lspconfig.lua

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ return {
1010

1111
-- Useful status updates for LSP.
1212
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
13-
{ 'j-hui/fidget.nvim', opts = {} },
13+
{ 'j-hui/fidget.nvim', opts = {} },
1414

1515
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
1616
-- used for completion, annotations and signatures of Neovim apis
17-
{ 'folke/neodev.nvim', opts = {} },
17+
{ 'folke/neodev.nvim', opts = {} },
1818
},
1919
config = function()
2020
-- Brief aside: **What is LSP?**
@@ -159,7 +159,7 @@ return {
159159
local servers = {
160160
-- clangd = {},
161161
gopls = {},
162-
-- pyright = {},
162+
pyright = {},
163163
-- rust_analyzer = {},
164164
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
165165
--
@@ -216,5 +216,4 @@ return {
216216
}
217217
end,
218218
},
219-
220219
}

0 commit comments

Comments
 (0)