2022-07-19 13:03:03 +02:00
|
|
|
local arpeggio = require("my.plugins.arpeggio")
|
|
|
|
|
2022-07-19 20:19:36 +02:00
|
|
|
print("Initializing nix keybinds...")
|
|
|
|
|
2022-07-19 13:03:03 +02:00
|
|
|
-- Use vt to test
|
|
|
|
arpeggio.chordSilent("n", "vt", ":VimuxRunCommand \"clear && spago test\"<CR>",
|
2022-07-19 20:19:36 +02:00
|
|
|
{ settings = "b" })
|
2022-07-19 13:03:03 +02:00
|
|
|
|
|
|
|
-- Use vb to build
|
|
|
|
arpeggio.chordSilent("n", "vb", ":VimuxRunCommand \"clear && spago build\"<CR>",
|
2022-07-19 20:19:36 +02:00
|
|
|
{ settings = "b" })
|
2022-07-19 13:03:03 +02:00
|
|
|
|
|
|
|
vim.opt.expandtab = true -- Use spaces for the tab char
|