Guest User

Untitled

a guest
Jul 17th, 2018
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 2.58 KB | None | 0 0
  1. call plug#begin('~/.vim/plugged')
  2. Plug 'nightsense/nemo'
  3. Plug 'neutaaaaan/iosvkem'
  4. Plug 'nightsense/nemo'
  5. call plug#end()
  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 'VundleVim/Vundle.vim'
  17.  
  18. " The following are examples of different formats supported.
  19. " Keep Plugin commands between vundle#begin/end.
  20. " plugin on GitHub repo
  21. " Plugin 'tpope/vim-fugitive'
  22. " plugin from http://vim-scripts.org/vim/scripts.html
  23. " Plugin 'L9'
  24. " Git plugin not hosted on GitHub
  25. " Plugin 'git://git.wincent.com/command-t.git'
  26. " git repos on your local machine (i.e. when working on your own plugin)
  27. " Plugin 'file:///home/gmarik/path/to/plugin'
  28. " The sparkup vim script is in a subdirectory of this repo called vim.
  29. " Pass the path to set the runtimepath properly.
  30. Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  31. " Install L9 and avoid a Naming conflict if you've already installed a
  32. " different version somewhere else.
  33. " Plugin 'ascenator/L9', {'name': 'newL9'}
  34. Bundle 'christoomey/vim-tmux-navigator'
  35. Bundle 'HenryNewcomer/vim-theme-papaya'
  36. Plugin 'liuchengxu/space-vim-dark'
  37. " All of your Plugins must be added before the following line
  38. call vundle#end()            " required
  39. filetype plugin indent on    " required
  40. " To ignore plugin indent changes, instead use:
  41. "filetype plugin on
  42. "
  43. " Brief help
  44. " :PluginList       - lists configured plugins
  45. " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
  46. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  47. " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
  48. "
  49. " see :h vundle for more details or wiki for FAQ
  50. " Put your non-Plugin stuff after this line
  51.  
  52.  
  53. " CONFISHAN:
  54. "
  55. set relativenumber
  56.  
  57. " activates filetype detection
  58.  
  59. filetype plugin indent on
  60. " enable syntax-highlighting
  61.  
  62. syntax on
  63.  
  64. let g:nemo_dark_LineNr = 'off'
  65. colorscheme nemo-dark\
  66.  
  67.  
  68. " allows you to deal with multiple unsaved
  69. " buffers simultaneously without resorting
  70. " to misusing tabs
  71. set hidden
  72.  
  73. " just hit backspace without this one and
  74. " see for yourself
  75. set backspace=indent,eol,start
  76.  
  77. if &term =~ '256color'
  78.   " disable Background Color Erase (BCE) so that color schemes
  79.   " render properly when inside 256-color tmux and GNU screen.
  80.   set t_ut=
  81. endif
  82. set mouse=a
Add Comment
Please, Sign In to add comment