From 3290095f68f9a48241bbaa450d8e8d5cab7e169d Mon Sep 17 00:00:00 2001 From: mallowpi Date: Sat, 26 Jul 2025 08:11:01 -0500 Subject: [PATCH] new changes --- lua/keymaps.lua | 5 +++++ lua/kickstart/plugins/lspconfig.lua | 7 +++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 3fc568e1..b5fbfb96 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -47,3 +47,8 @@ vim.api.nvim_create_autocmd('TextYankPost', { vim.highlight.on_yank() end, }) + +-- [[ TMUX Shortcuts ]] -- +vim.keymap.set('n', 'tw', function() + vim.fn.system 'tmux split-window -v +end, { desc = 'Create a split window in current tmux session' }) diff --git a/lua/kickstart/plugins/lspconfig.lua b/lua/kickstart/plugins/lspconfig.lua index 8cd106cc..9d671011 100644 --- a/lua/kickstart/plugins/lspconfig.lua +++ b/lua/kickstart/plugins/lspconfig.lua @@ -10,11 +10,11 @@ return { -- Useful status updates for LSP. -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` - { 'j-hui/fidget.nvim', opts = {} }, + { 'j-hui/fidget.nvim', opts = {} }, -- `neodev` configures Lua LSP for your Neovim config, runtime and plugins -- used for completion, annotations and signatures of Neovim apis - { 'folke/neodev.nvim', opts = {} }, + { 'folke/neodev.nvim', opts = {} }, }, config = function() -- Brief aside: **What is LSP?** @@ -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, }, - }