markdown updated plugins

This commit is contained in:
Norm Rasmussen
2022-09-22 12:38:15 -04:00
parent a7df9ae715
commit 557bf04368
5 changed files with 28 additions and 30 deletions

View File

@ -7,13 +7,14 @@ local default_opts = { noremap = true, silent = true }
-- Fast saving with <leader> and s
map('n', '<leader>s', ':w<CR>', default_opts)
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
map('n', '<leader>aa', ':w|:luafile %<CR> |:PackerCompile<CR>', default_opts)
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
-- Move around splits using Ctrl + {h,j,k,l}
map('n', '<C-h>', '<C-w>h', default_opts)
map('n', '<C-j>', '<C-w>j', default_opts)
map('n', '<C-k>', '<C-w>k', default_opts)
map('n', '<C-l>', '<C-w>l', default_opts)
--map('n', '<C-h>', '<C-w>h', default_opts)
--map('n', '<C-j>', '<C-w>j', default_opts)
--map('n', '<C-k>', '<C-w>k', default_opts)
--map('n', '<C-l>', '<C-w>l', default_opts)
-- Neovim Tab Navgation via Vem-Tabline
map('n', '<leader>t', ':tabnew<CR>', default_opts)

View File

@ -53,10 +53,15 @@ return require'packer'.startup(function()
------------------------------------------------------------
-- Tmux Navigation
use 'aserowy/tmux.nvim'
use({
"aserowy/tmux.nvim",
config = function() require("tmux").setup() end
})
-- Find & Search LSP Tags
use 'liuchengxu/vista.vim'
-- Snippets
use 'rafamadriz/friendly-snippets'
-- Rename and Work with Buffer & Tabs

View File

@ -1,11 +0,0 @@
local tmux_installer = require("tmux").setup({
copy_sync = {
enable = true,
},
navigation = {
enable_default_keybindings = true,
},
resize = {
enable_default_keybindings = true,
}
})