Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.76 KB | None | 0 0
  1. set runtimepath+=~/.vim_runtime
  2.  
  3. source ~/.vim_runtime/vimrcs/basic.vim
  4. source ~/.vim_runtime/vimrcs/filetypes.vim
  5. source ~/.vim_runtime/vimrcs/plugins_config.vim
  6. source ~/.vim_runtime/vimrcs/extended.vim
  7.  
  8. try
  9. source ~/.vim_runtime/my_configs.vim
  10. catch
  11. endtry
  12. colorscheme peaksea
  13. set nocompatible   " Disable vi-compatibility
  14. set t_Co=256
  15.  
  16. set guifont=menlo\ for\ powerline:h16
  17. set guioptions-=T " Removes top toolbar
  18. set guioptions-=r " Removes right hand scroll bar
  19. set go-=L " Removes left hand scroll bar
  20. set linespace=15
  21.  
  22. set showmode                    " always show what mode we're currently editing in
  23. set nowrap                      " don't wrap lines
  24. set tabstop=4                   " a tab is four spaces
  25. set smarttab
  26. set tags=tags
  27. set softtabstop=4               " when hitting <BS>, pretend like a tab is removed, even if space                                s
  28. set expandtab                   " expand tabs by default (overloadable per file type later)
  29. set shiftwidth=4                " number of spaces to use for autoindenting
  30. set shiftround                  " use multiple of shiftwidth when indenting with '<' and '>'
  31. set backspace=indent,eol,start  " allow backspacing over everything in insert mode
  32. set autoindent                  " always set autoindenting on
  33. set copyindent                  " copy the previous indentation on autoindenting
  34. set ignorecase                  " ignore case when searching
  35. set smartcase                   " ignore case if search pattern is all lowercase,
  36. set timeout timeoutlen=200 ttimeoutlen=100
  37. set noerrorbells         " don't beep
  38. set autowrite  "Save on buffer switch
  39. set backupdir=~/.vim/backup//
  40. set directory=~/.vim/swap//
  41. setlocal foldmethod=indent
  42. set foldnestmax=10
  43. set nofoldenable
  44. set foldlevel=10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement