Advertisement
Guest User

Untitled

a guest
Sep 14th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.49 KB | None | 0 0
  1. " DCM .vimrc
  2.  
  3. " =================================
  4. " Vundle INIT
  5. set nocompatible
  6. filetype off
  7.  
  8. set rtp+=~/.vim/bundle/Vundle.vim
  9. call vundle#begin()
  10.  
  11. " Vundle
  12. Plugin 'VundleVim/Vundle.vim'
  13.  
  14. " Airline
  15. Plugin 'vim-airline/vim-airline'
  16. Plugin 'vim-airline/vim-airline-themes'
  17.  
  18. " Colors
  19. Plugin 'morhetz/gruvbox'
  20.  
  21. call vundle#end()
  22. filetype plugin indent on
  23. " Vundle END
  24.  
  25. " =================================
  26. " Colors
  27. syntax on
  28. set background=dark
  29. colorscheme gruvbox
  30.  
  31. " =================================
  32. " Maps
  33. inoremap jk <ESC>
  34.  
  35. " =================================
  36. " Disable Arrow Navigation
  37. map <up> <nop>
  38. map <down> <nop>
  39. map <left> <nop>
  40. map <right> <nop>
  41. imap <up> <nop>
  42. imap <down> <nop>
  43. imap <left> <nop>
  44. imap <right> <nop>
  45.  
  46. " =================================
  47. " Line Numbering
  48. set number
  49.  
  50. " =================================
  51. " Searching
  52. set hlsearch
  53. set incsearch
  54. set ignorecase
  55.  
  56. " =================================
  57. " Indentation
  58. set expandtab
  59. set tabstop=4
  60. set shiftwidth=4
  61. set autoindent
  62. set smartindent
  63. set smarttab
  64. set copyindent
  65.  
  66. " =================================
  67. " Airline config
  68. set laststatus=2
  69.  
  70. " =================================
  71. " Autocomplete in command line
  72. set wildmenu                      
  73. set wildmode=longest,full    
  74. if exists("&wildignorecase")
  75.       set wildignorecase
  76.  endif
  77.  
  78. " =================================
  79. " General
  80. set whichwrap+=<,>,h,l,[,]
  81. set encoding=utf-8
  82. set showcmd
  83. set backspace=indent,eol,start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement