this repo has no description
1
fork

Configure Feed

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

Update Git configuration

+4 -7
+1 -1
git/config
··· 16 16 todo = grep -Ee '\\bTODO:?\\b' 17 17 fixme = grep -Ee '\\bFIX(ME)?:?\\b' 18 18 com = checkout master 19 - fix = commit --fixup=HEAD 19 + fixup = commit --fixup=HEAD 20 20 ag = grep 21 21 rg = grep 22 22
+2 -5
nvim/init.vim
··· 8 8 " }}} 9 9 10 10 " Plugins {{{ 11 - call plug#begin('~/.local/nvim/plugins') 11 + call plug#begin('~/.local/share/nvim/plugins') 12 12 13 13 Plug 'hauleth/blame.vim' 14 14 ··· 60 60 61 61 " Completion 62 62 Plug 'racer-rust/vim-racer' 63 - Plug 'slashmili/alchemist.vim', { 'for': 'elixir' } 63 + Plug 'slashmili/alchemist.vim' 64 64 Plug 'roxma/nvim-completion-manager' | 65 65 \ Plug 'roxma/nvim-cm-racer' 66 66 ··· 137 137 " Ignore all automatic files and folders 138 138 set wildignore=*.o,*~,*.pyc,.git,*/tmp/* 139 139 140 - syntax sync minlines=500 141 - 142 140 " Display tabs and trailing spaces visually 143 141 set list 144 142 set listchars=tab:→\ ,trail:·,nbsp:␣ ··· 195 193 " Search {{{ 196 194 " Smart case searches 197 195 set ignorecase smartcase inccommand=nosplit 198 - command! -nargs=+ Grep silent grep <q-args> 199 196 " }}} 200 197 " Backup, swap & undo {{{ 201 198 " Turn backup off, since most stuff is in SVN, git etc. anyway...
+1 -1
nvim/plugin/startify.vim
··· 1 1 let g:startify_list_order = ['sessions', 'dir'] 2 - let g:startify_session_dir = '~/.local/nvim/sessions/' 2 + let g:startify_session_dir = '~/.local/share/nvim/sessions/' 3 3 let g:startify_session_autoload = 1 4 4 let g:startify_session_persistence = 1 5 5