this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim: Tell lazygit to use the right config file

+5 -1
+5 -1
vim/astronvim/init.lua
··· 31 31 diagnostics_style = { italic = true }, 32 32 -- Modify the color table 33 33 colors = { 34 - fg = "#abb2bf", 34 + fg = "#657b83", 35 + bg = "#fdf6e3", 35 36 }, 36 37 -- Modify the highlight groups 37 38 highlights = function(highlights) ··· 194 195 vim.keymap.set("n", "<C-s>", ":w!<CR>") 195 196 vim.keymap.set("n", "<leader>w/", ":vsp<CR>") 196 197 vim.keymap.set("n", "<leader>w?", ":sp<CR>") 198 + vim.keymap.set("n", "<leader>gg", function() 199 + astronvim.toggle_term_cmd("lazygit --use-config-file '~/Library/Application Support/lazygit/config.yml'") 200 + end) 197 201 198 202 -- Set autocommands 199 203 vim.api.nvim_create_augroup("packer_conf", { clear = true })