feat: Updates to nvim config and git config

This commit is contained in:
2024-11-14 16:26:35 -05:00
parent 15eedbfd1e
commit 49524fef66
5 changed files with 23 additions and 17 deletions

View File

@@ -9,7 +9,7 @@ return {
local default_options = { noremap = true, silent = true }
local actions = require('swift.actions')
vim.keymap.set('n', '<c-b>', actions.build, default_options)
vim.keymap.set('n', '<c-u>', actions.test, default_options)
vim.keymap.set('n', '<C-b>', actions.build, default_options)
vim.keymap.set('n', '<C-S-U>', actions.test, default_options)
end
}