this repo has no description
0
fork

Configure Feed

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

nvim specific lazygit config

+13 -1
+4
misc/lazygit-nvim.yml
··· 1 + # This is the lazygit config used when launched within neovim with <leader>gg 2 + gui: 3 + theme: 4 + lightTheme: false
+7
playbooks/roles/misc/tasks/main.yml
··· 5 5 state: link 6 6 force: true 7 7 8 + - name: link-lazygit-nvim-config 9 + ansible.builtin.file: 10 + src: "{{ dotfiles_dir }}/misc/lazygit-nvim.yml" 11 + dest: "{{ home_dir }}/Library/Application Support/lazygit/nvim.yml" 12 + state: link 13 + force: true 14 + 8 15 - name: link-lazydocker-config 9 16 ansible.builtin.file: 10 17 src: "{{ dotfiles_dir }}/misc/lazydocker.yml"
+1
playbooks/roles/programs/tasks/main.yml
··· 34 34 - tree 35 35 - ffmpeg 36 36 - fzf 37 + - filosottile/musl-cross/musl-cross 37 38 - superfly/tap/flyctl 38 39 - gh 39 40 - git
+1 -1
vim/astronvim/init.lua
··· 186 186 vim.keymap.set("n", "<leader>go", ':exe "!gbrowse " . fnamemodify(expand(\"%\"), \":~:.\")<CR>') 187 187 188 188 vim.keymap.set("n", "<leader>gg", function() 189 - astronvim.toggle_term_cmd("lazygit -ucf '/Users/sethetter/Library/Application Support/lazygit/config.yml'") 189 + astronvim.toggle_term_cmd("lazygit -ucf '/Users/sethetter/Library/Application Support/lazygit/nvim.yml'") 190 190 end) 191 191 192 192 -- Set autocommands