this repo has no description
1
fork

Configure Feed

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

Cleanup init.vim

+10 -16
+3 -3
nvim/after/ftplugin/gina-commit.vim
··· 1 1 setlocal spell 2 - setlocal tw=72 2 + setlocal textwidth=72 3 3 4 - nnoremap <buffer> <C-^> :<C-u>Gina status<CR> 5 - nnoremap <buffer> <C-6> :<C-u>Gina status<CR> 4 + nnoremap <buffer> <C-^> :<C-u>Gina status -s<CR> 5 + nnoremap <buffer> <C-6> :<C-u>Gina status -s<CR>
+7 -13
nvim/init.vim
··· 47 47 call minpac#add('roxma/nvim-cm-racer') 48 48 49 49 " Code manipulation 50 + call minpac#add('mjbrownie/swapit') 50 51 call minpac#add('jiangmiao/auto-pairs') 51 52 call minpac#add('tommcdo/vim-exchange') 52 53 call minpac#add('tommcdo/vim-lion') ··· 124 125 set nobackup noswapfile 125 126 126 127 " Keep undo history across sessions, by storing in file. 127 - " Only works all the time. 128 - if &diff 129 - set noundofile 130 - set undolevels=-1 131 - set undoreload=-1 132 - else 133 - if !isdirectory($HOME . '/.cache/backups') 134 - silent !mkdir -p ~/.cache/backups > /dev/null 2>&1 135 - endif 136 - let &undodir=$HOME . '/.cache/backups' 137 - set undofile 138 - set undolevels=1000 139 - set undoreload=10000 128 + if !isdirectory($HOME . '/.cache/backups') 129 + silent !mkdir -p ~/.cache/backups > /dev/null 2>&1 140 130 endif 131 + let &undodir=$HOME . '/.cache/backups' 132 + set undofile 133 + set undolevels=1000 134 + set undoreload=10000 141 135 " }}} 142 136 " Mappings {{{ 143 137 " Fuzzy file search {{{