DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: f7dc3aaae22311a97d2f618cec2f564829e33af0 nvim-flake/config/plugins/toggleterm.nix -rw-r--r-- 423 bytes
f7dc3aaaJonni Liljamo feat(tiny-code-action): init a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  plugins.toggleterm.enable = true;
  extraConfigLua = ''
    local Terminal = require("toggleterm.terminal").Terminal
    local lazygit = Terminal:new({ cmd = "lazygit", hidden = true, direction = "float" })

    function _lazygit_toggle()
      lazygit:toggle()
    end

    vim.api.nvim_set_keymap("n", "<C-l>", "<cmd>lua _lazygit_toggle()<CR>",
      {noremap = true, silent = true, desc = "Toggle lazygit"})
  '';
}