DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 6b308ab08a18f703b7ec95d438a36fd615f13bc9 nvim-flake/config/plugins/toggleterm.nix -rw-r--r-- 423 bytes
6b308ab0Jonni Liljamo fix(lsp): rust-analyzer loadOutDirsFromCheck 4 days 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"})
  '';
}