Advertisement
Guest User

Untitled

a guest
Jun 29th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.64 KB | None | 0 0
  1. set nocompatible              " be iMproved, required
  2. filetype off                  " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. " alternatively, pass a path where Vundle should install plugins
  8. "call vundle#begin('~/some/path/here')
  9.  
  10. " let Vundle manage Vundle, required
  11. Plugin 'VundleVim/Vundle.vim'
  12.  
  13. " The following are examples of different formats supported.
  14. " Keep Plugin commands between vundle#begin/end.
  15. " plugin on GitHub repo
  16. Plugin 'bash-support.vim'
  17. Plugin 'raimondi/delimitmate'
  18. Plugin 'tpope/vim-sensible'
  19. Plugin 'roxma/vim-paste-easy'
  20. Plugin 'vim-ctrlspace/vim-ctrlspace'
  21. Plugin 'flazz/vim-colorschemes'
  22. " All of your Plugins must be added before the following line
  23. call vundle#end()            " required
  24. filetype plugin indent on    " required
  25. " To ignore plugin indent changes, instead use:
  26. "filetype plugin on
  27. "
  28. " Brief help
  29. " :PluginList       - lists configured plugins
  30. " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
  31. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  32. " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
  33. "
  34. " see :h vundle for more details or wiki for FAQ
  35. " Put your non-Plugin stuff after this line
  36. execute pathogen#infect()
  37. filetype plugin indent on
  38. " <Ctrl-l> redraws the screen and removes any search highlighting."
  39. nnoremap <silent> <C-l> :nohl<CR><C-l>
  40. set tabstop=4
  41. set shiftwidth=4
  42. set expandtab
  43. set nocompatible
  44. set hidden
  45. syntax on
  46. set encoding=utf-8
  47.  
  48. colorscheme elflord
  49. inoremap jk <ESC>
  50. let mapleader=" "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement