diff options
| author | Ahmed Abdelhalim <[email protected]> | 2018-09-10 09:24:24 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2018-09-10 09:24:24 +0200 |
| commit | d981aaa8c5209454ae0fe5e8d00dad328d91d67b (patch) | |
| tree | 185d385f77ffa57c7da5da32e59ac053a18b74d5 | |
| parent | 87143aa1f8b8116c25635073171e179859d923f2 (diff) | |
Sort full name and auto complete git messages
| -rw-r--r-- | .vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -164,6 +164,7 @@ autocmd BufNewFile,BufRead *.json.jbuilder set filetype=ruby " for ruby json tem autocmd BufRead,BufNewFile *.md setlocal spell " spell check md files autocmd BufRead,BufNewFile *.markdown setlocal spell " spell check md files autocmd FileType gitcommit setlocal spell " spell check commits +autocmd FileType gitcommit set complete+=k " allow spell autocompletion using CTRL-N autocmd FileType javascript noremap <buffer> <c-f> :call JsBeautify()<cr> autocmd FileType json noremap <buffer> <c-f> :call JsonBeautify()<cr> autocmd FileType html noremap <buffer> <c-f> :call HtmlBeautify()<cr> @@ -199,7 +200,7 @@ let NERDSpaceDelims = 1 " add a space after comment delimiter "BufExp" "====== let g:bufExplorerShowRelativePath=1 " Show relative paths. -let g:bufExplorerSortBy='name' " Sort by file name. +let g:bufExplorerSortBy='fullpath' " Sort by file path. "Vim-airline "=========== |
