This commit is contained in:
MortenB22R 2025-03-20 22:53:41 +01:00
parent 1465c9c303
commit 65a4d0e7d0
1 changed files with 3 additions and 0 deletions

View File

@ -194,6 +194,9 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' }) vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
-- TODO: EGEN TEXT
vim.keymap.set('n', '<leader>p', ':!start cmd.exe /K "live-server"<CR>', { desc = 'Live server Run' })
-- [[ Basic Autocommands ]] -- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands` -- See `:help lua-guide-autocommands`