Nvim and tmux changes

This commit is contained in:
2023-03-17 08:02:42 -04:00
parent 15fe3f52a9
commit b0c807728a
6 changed files with 13 additions and 63 deletions

View File

@@ -1,5 +1,11 @@
local o = vim.opt
local keymap = vim.api.nvim_set_keymap
local default_options = {noremap = true, silent = true}
o.tabstop = 2
o.softtabstop = 2
o.shiftwidth = 2
keymap('n', '<C-b>', '<cmd>!swift build<CR>', default_options)
keymap('n', '<C-T>', '<cmd>!swift test<CR>', default_options)