Advertisement
Guest User

vimrc hrry

a guest
Apr 10th, 2015
1,278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. " ~/.vimrc
  2.  
  3. " Vundle
  4. " ----------------------
  5.  
  6. set nocompatible " be iMproved, required
  7. filetype off " required
  8.  
  9. " set the runtime path to include Vundle and initialize
  10. set rtp+=~/.vim/bundle/Vundle.vim
  11. call vundle#begin()
  12. " alternatively, pass a path where Vundle should install plugins
  13. "call vundle#begin('~/some/path/here')
  14.  
  15. " let Vundle manage Vundle, required
  16. Plugin 'gmarik/Vundle.vim'
  17.  
  18. Plugin 'scrooloose/nerdtree'
  19. map <C-n> :NERDTreeToggle<CR>
  20.  
  21. Plugin 'kien/ctrlp.vim'
  22.  
  23. Plugin 'ervandew/supertab'
  24. let g:SuperTabDefaultCompletionType = "<c-n>"
  25. set dictionary-=/usr/share/dict/american-english-insane dictionary+=/usr/share/dict/american-english-insane
  26. set dictionary-=/usr/share/dict/dutch dictionary+=/usr/share/dict/dutch
  27. set complete+=k
  28.  
  29. Plugin 'vimwiki/vimwiki'
  30. set nocompatible
  31. filetype plugin on
  32. syntax on
  33. let g:vimwiki_folding='syntax'
  34. let g:vimwiki_list = [{'path': '/home/u/wiki', 'path_html': '/home/u/wiki/export/html', 'auto_export': 1}]
  35.  
  36. Plugin 'beloglazov/vim-online-thesaurus'
  37.  
  38. Plugin 'vim-auto-save'
  39. let g:auto_save = 1 " enable AutoSave on Vim startup
  40.  
  41. Plugin 'tpope/vim-markdown'
  42. set syntax=markdown
  43. au BufNewFile,BufFilePre,BufRead *.md set filetype=markdown
  44. nnoremap <Space> za
  45.  
  46. Plugin 'nelstrom/vim-markdown-folding'
  47.  
  48. " All of your Plugins must be added before the following line
  49. call vundle#end() " required
  50. filetype plugin indent on " required
  51. " To ignore plugin indent changes, instead use:
  52. "filetype plugin on
  53. "
  54. " Brief help
  55. " :PluginList - lists configured plugins
  56. " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  57. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  58. " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  59. "
  60. " see :h vundle for more details or wiki for FAQ
  61. " Put your non-Plugin stuff after this line
  62.  
  63.  
  64. " Additional main settings
  65. " -----------------------
  66.  
  67. set number
  68.  
  69. set autoindent
  70. set shiftwidth=2
  71. set softtabstop=2
  72.  
  73. set mouse=a
  74.  
  75. hi StatusLine ctermbg=white ctermfg=yellow
  76.  
  77. set dictionary-=/usr/share/dict/american-english-insane dictionary+=/usr/share/dict/american-english-insane
  78. set dictionary-=/usr/share/dict/dutch dictionary+=/usr/share/dict/dutch
  79. set complete+=k
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement