File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff 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' })
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments