this repo has no description
1
fork

Configure Feed

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

Cleanup ftplugin

+25 -60
-1
nvim/after/ftplugin/css.vim
··· 1 - setlocal omnifunc=csscomplete#CompleteCSS
-12
nvim/after/ftplugin/eruby.vim
··· 1 - if !exists('b:surround_45') 2 - let b:surround_45 = "<% \r %>" 3 - endif 4 - if !exists('b:surround_61') 5 - let b:surround_61 = "<%= \r %>" 6 - endif 7 - if !exists('b:surround_35') 8 - let b:surround_35 = "<%# \r %>" 9 - endif 10 - if !exists('b:surround_5') 11 - let b:surround_5 = "<% \r %>\n<% end %>" 12 - endif
-2
nvim/after/ftplugin/gina-branch.vim
··· 1 - nnoremap <buffer> o :<C-u>Gina checkout -b<Space> 2 - nnoremap <buffer> O :<C-u>Gina branch<Space>
-5
nvim/after/ftplugin/gina-commit.vim
··· 1 - setlocal spell 2 - setlocal textwidth=72 3 - 4 - nnoremap <buffer> <C-^> :<C-u>Gina status -s<CR> 5 - nnoremap <buffer> <C-6> :<C-u>Gina status -s<CR>
-2
nvim/after/ftplugin/gina-status.vim
··· 1 - nnoremap <buffer> <C-^> :<C-u>Gina commit<CR> 2 - nnoremap <buffer> <C-6> :<C-u>Gina commit<CR>
-1
nvim/after/ftplugin/gitcommit.vim
··· 1 1 setlocal spell 2 - setlocal textwidth=72
+7 -6
nvim/after/ftplugin/gitrebase.vim
··· 1 - nmap <buffer> ce ^ciwe<ESC> 2 - nmap <buffer> cf ^ciwf<ESC> 3 - nmap <buffer> cp ^ciwp<ESC> 4 - nmap <buffer> cr ^ciwr<ESC> 5 - nmap <buffer> cs ^ciws<ESC> 6 - nmap <buffer> cd ^ciwd<ESC> 1 + nnoremap <buffer> ce :Edit<CR> 2 + nnoremap <buffer> cf :Fixup<CR> 3 + nnoremap <buffer> cp :Pick<CR> 4 + nnoremap <buffer> cr :Reword<CR> 5 + nnoremap <buffer> cs :Squash<CR> 6 + 7 + nnoremap <buffer> cc :Cycle<CR>
-2
nvim/after/ftplugin/html.vim
··· 1 - setlocal omnifunc=htmlcomplete#CompleteTags 2 - 3 1 let g:html_indent_inctags = 'html,body,head,tbody'
-1
nvim/after/ftplugin/javascript.vim
··· 1 - setlocal omnifunc=javascriptcomplete#CompleteJS 2 1 setlocal tabstop=2
-1
nvim/after/ftplugin/makefile.vim
··· 1 - setlocal noexpandtab
-1
nvim/after/ftplugin/python.vim
··· 1 - setlocal omnifunc=pythoncomplete#Complete
-1
nvim/after/ftplugin/tex.vim
··· 1 - let g:Tex_DefaultTargetFormat = 'pdf'
-1
nvim/after/ftplugin/toml.vim
··· 1 - setlocal commentstring=#%s
-1
nvim/after/ftplugin/typescript.vim
··· 1 - setlocal tabstop=2
+4 -2
nvim/autoload/plugins.vim
··· 33 33 call minpac#add('posva/vim-vue') 34 34 " }}} 35 35 " Git {{{ 36 - call minpac#add('lambdalisue/gina.vim') 36 + " call minpac#add('lambdalisue/gina.vim') 37 + call minpac#add('tpope/vim-fugitive') 38 + call minpac#add('idanarye/vim-merginal') 37 39 " }}} 38 40 " Project navigation {{{ 39 - call minpac#add('lotabout/skim', { 'do': function('s:install_skim') }) 41 + call minpac#add('junegunn/fzf') 40 42 call minpac#add('tpope/vim-projectionist') 41 43 call minpac#add('direnv/direnv.vim') 42 44 " }}}
+4 -3
nvim/autoload/statusline.vim
··· 10 10 endfunction 11 11 12 12 function! statusline#repo() abort 13 - return gina#component#repo#branch() 14 - \ . ' ' 15 - \ . gina#component#traffic#preset('fancy') 13 + " return gina#component#repo#branch() 14 + " \ . ' ' 15 + " \ . gina#component#traffic#preset('fancy') 16 + return '' 16 17 endfunction 17 18 18 19 function! statusline#quickfix_name() abort
+10 -18
nvim/init.vim
··· 2 2 scriptencoding utf-8 3 3 4 4 " Unload unneeded plugins {{{ 5 - let g:loaded_netrw = 1 6 - let g:loaded_netrwPlugin = 1 7 - let g:loaded_vimballPlugin = 1 5 + let g:loaded_netrwPlugin = 1 "$VIMRUNTIME/plugin/netrwPlugin.vim 6 + let g:loaded_2html_plugin = 1 "$VIMRUNTIME/plugin/tohtml.vim 8 7 " }}} 9 8 10 9 " Plugins {{{ ··· 82 81 " Custom configurations {{{ 83 82 let g:vue_disable_pre_processors = 1 84 83 " Fuzzy file search {{{ 85 - nnoremap <Space><Space> :<C-u>SK<CR> 84 + nnoremap <Space><Space> :<C-u>FZF<CR> 86 85 " }}} 87 86 " Git shortcuts {{{ 88 87 nnoremap U <nop> 89 - nnoremap Up :<C-u>Gina push<CR> 90 - nnoremap Us :<C-u>keepalt Gina status -s<CR> 91 - nnoremap Ud :<C-u>keepalt Gina diff :<CR> 92 - nnoremap Ub :<C-u>keepalt Gina branch<CR> 93 - nnoremap UB :<C-u>keepalt Gina blame :<CR> 94 - nnoremap Uc :<C-u>keepalt Gina commit<CR> 95 - nnoremap Uu :<C-u>Gina pull --all<CR> 88 + nnoremap Up :<C-u>Gpush<CR> 89 + nnoremap Us :<C-u>Gstatus<CR> 90 + nnoremap Ud :<C-u>Gdiff<CR> 91 + nnoremap Ub :<C-u>Merginal<CR> 92 + nnoremap UB :<C-u>Gblame<CR> 93 + nnoremap Uc :<C-u>Gcommit<CR> 94 + nnoremap Uu :<C-u>Gpull<CR> 96 95 nmap UU Uu 97 - 98 - cabbr Gita Gina 99 - cabbr Gita! Gina! 100 - cabbr G Gina 101 - cabbr G! Gina! 102 - cabbr Git Gina 103 - cabbr Git! Gina! 104 96 " }}} 105 97 " Asynchronous commands {{{ 106 98 command! -bang -nargs=* -complete=file Make AsyncRun -program=make @ <args>
nvim/tags/.keep

This is a binary file and will not be displayed.