mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
15 lines
383 B
Lua
15 lines
383 B
Lua
return {
|
|
'm-housh/swift.nvim',
|
|
dependencies = {
|
|
'akinsho/toggleterm.nvim'
|
|
},
|
|
config = function()
|
|
require('swift').setup()
|
|
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)
|
|
end
|
|
}
|