Advertisement
Guest User

.vimrc

a guest
Apr 3rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.49 KB | None | 0 0
  1.  
  2. set nocompatible    " Because what's even the point without this?
  3.  
  4. execute pathogen#infect()
  5.  
  6. " vim-airline
  7. let g:airline_powerline_fonts = 1
  8.  
  9. " syntastic
  10. let g:syntastic_always_populate_loc_list = 1
  11. let g:syntastic_auto_loc_list = 1
  12. let g:syntastic_check_on_open = 1
  13. let g:syntastic_check_on_wq = 0
  14.  
  15. syntax on
  16. filetype plugin indent on
  17.  
  18. " 256 colors and colorscheme
  19. set t_Co=256
  20.  
  21. let mapleader=","
  22.  
  23. set number          " Line numbers
  24. set laststatus=2    " Status line for file names
  25. set backspace=2     " Make backspace work
  26.  
  27. set expandtab       " Tabs -> spaces
  28. set softtabstop=4   " Tabs -> spaces gooder
  29. set tabstop=4       " Show tabs as 4 spaces
  30. set shiftwidth=4    " Reident 4 spaces
  31. nnoremap <leader><tab> gg=G " retab everything
  32.  
  33. set wildmenu        " Menu for command mode
  34. set lazyredraw      " Don't redraw the screen greedily
  35. set showmatch       " Highlight matching [{()}]
  36.  
  37. set visualbell      " SHUT UP WINDOWS
  38.  
  39. set incsearch       " Search as you type
  40. set hlsearch        " Highlight all matches
  41.  
  42. " Unhighlight all matches
  43. nnoremap <leader><space> :nohlsearch<CR>
  44.  
  45. set ruler           " Show cursor location (29,45)
  46.  
  47. set hidden          " Allow background buffers
  48.  
  49. " Backup to /tmp except what's in /tmp
  50. set backup
  51. set backupdir=/tmp
  52. set backupskip=/tmp
  53. set directory=/tmp
  54. set writebackup
  55.  
  56. " When moving between panes, C-hjkl instead of C-w C-hjkl
  57. nnoremap <C-H> <C-W><C-H>
  58. nnoremap <C-J> <C-W><C-J>
  59. nnoremap <C-K> <C-W><C-K>
  60. nnoremap <C-L> <C-W><C-L>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement