diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-08-24 07:15:01 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-08-24 07:15:01 +0200 |
| commit | e1f86f92ffcba791739dfea105cb5d8e9081db5e (patch) | |
| tree | 20f1b97935940533cfd3ab55502dcecfbe217b8e /.vimrc | |
| parent | 4ba52715c7ece96b28fd28693f9f0c232ccad733 (diff) | |
| parent | 084809954f13205af598127ea00d37b819d927b4 (diff) | |
| download | dotfiles-e1f86f92ffcba791739dfea105cb5d8e9081db5e.tar.gz dotfiles-e1f86f92ffcba791739dfea105cb5d8e9081db5e.tar.bz2 dotfiles-e1f86f92ffcba791739dfea105cb5d8e9081db5e.zip | |
Merge branch 'master' of github.com:cacharle/dotfiles into carbon
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -203,7 +203,7 @@ command! -nargs=1 PutCoplienForm call PutCoplienFormFunc("<args>") " }}} " quickfix window toggle {{{ -nnoremap <leader>t :call QuickfixToggle()<CR> +nnoremap <leader>q :call QuickfixToggle()<CR> nnoremap <leader>n :cnext <CR> nnoremap <leader>p :cprevious <CR> let g:quickfix_is_open = 0 @@ -241,6 +241,8 @@ autocmd Filetype cpp nnoremap <leader>cout istd::cout << << std::endl;<ESC>2F<h autocmd Filetype vim setlocal foldmethod=marker autocmd FileType haskell set formatprg=stylish-haskell + +autocmd FileType lisp set shiftwidth=2 " }}} """""""""""" @@ -253,6 +255,7 @@ set wildignore=*/tmp/*,*.o,*.so,*.swp,*.zip,*/node_modules/*,*/vendor/*,.bundle/ " ctrlp ignore all stuff in the .gitignore let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] let g:ctrlp_working_path_mode = 'rw' +let g:ctrlp_mruf_case_sensitive = 0 " }}} " quick-scope {{{ @@ -270,3 +273,8 @@ let g:ctrlp_working_path_mode = 'rw' " let g:ctrlp_funky_syntax_highlight = 1 " nnoremap <C-f> :CtrlPFunky<CR> " }}} + +" eazy-align {{{ +xmap ga <Plug>(EasyAlign) +nmap ga <Plug>(EasyAlign) +" }}} |
