feat: change to nushell

This commit is contained in:
Fabio Lenherr / DashieTM 2023-02-26 00:02:14 +01:00
parent 240df6617e
commit e6d5bf477a
8 changed files with 1016 additions and 8 deletions

View file

@ -90,3 +90,11 @@ vim.keymap.set("n", "<leader>z", ":lua require('telescope').extensions.zoxide.li
-- trouble
map("n", "<C-f>", "<cmd>TroubleToggle<CR>", term_opts)
-- gitui
map("n", "<leader>gg", function()
Util.float_term({ "gitui" }, { cwd = Util.get_root() })
end, { desc = "gitui (root dir)" })
map("n", "<leader>gG", function()
Util.float_term({ "gitui" })
end, { desc = "gitui (cwd)" })