diff options
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) +" }}} |
