build core, basic and go variants and add template

This commit is contained in:
Dietrich Rink
2023-06-01 00:54:51 +02:00
parent 76e695ebbb
commit dd67e62569
31 changed files with 800 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
-- Disable wrapping
vim.g.tmux_navigator_no_wrap = 1
-- Keyboard shortcuts
vim.g.tmux_navigator_no_mappings = 1
vim.keymap.set('n', '<m-h>', vim.cmd.TmuxNavigateLeft, { silent = true })
vim.keymap.set('n', '<m-j>', vim.cmd.TmuxNavigateDown, { silent = true })
vim.keymap.set('n', '<m-k>', vim.cmd.TmuxNavigateUp, { silent = true })
vim.keymap.set('n', '<m-l>', vim.cmd.TmuxNavigateRight, { silent = true })