Advertisement
Guest User

Untitled

a guest
Aug 13th, 2019
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 3.44 KB | None | 0 0
  1. version 6.0
  2. if &cp | set nocp | endif
  3. let s:cpo_save=&cpo
  4. set cpo&vim
  5. map! <S-Insert> *
  6. vmap  "*d
  7. vmap gx <Plug>NetrwBrowseXVis
  8. nmap gx <Plug>NetrwBrowseX
  9. vnoremap <silent> <Plug>NetrwBrowseXVis :call netrw#BrowseXVis()
  10.  
  11. nnoremap <silent> <Plug>NetrwBrowseX :call netrw#BrowseX(expand((exists("g:netrw_gx")? g:netrw_gx : '<cfile>')),netrw#CheckIfRemote())
  12.  
  13. vmap <C-Del> "*d
  14. vmap <S-Del> "*d
  15. vmap <C-Insert> "*y
  16. vmap <S-Insert> "-d"*P
  17. nmap <S-Insert> "*P
  18. map <F5> :sp
  19. map <F6> :tabe
  20. map <F7> :tabp<CR>
  21. map <F8> :tabn<CR>
  22. let &cpo=s:cpo_save
  23. unlet s:cpo_save
  24. set background=dark
  25. set guifont=ProFont\ for\ Powerline:h12
  26. set guifontwide=ProFont\ for\ Powerline:h12
  27. set helplang=Se
  28. " vim: set ft=vim :
  29.  
  30. set nocompatible              " be iMproved, required
  31. filetype off                  " required
  32.  
  33. " set the runtime path to include Vundle and initialize
  34. set rtp+=~/vimfiles/bundle/Vundle.vim
  35. call vundle#begin('~/vimfiles/bundle/')
  36. " alternatively, pass a path where Vundle should install plugins
  37. "call vundle#begin('~/some/path/here')
  38.  
  39. " let Vundle manage Vundle, required
  40. Plugin 'VundleVim/Vundle.vim'
  41.  
  42. " The following are examples of different formats supported.
  43. " Keep Plugin commands between vundle#begin/end.
  44. " plugin on GitHub repo
  45. Plugin 'tpope/vim-fugitive'
  46. " plugin from http://vim-scripts.org/vim/scripts.html
  47. " Plugin 'L9'
  48. " Git plugin not hosted on GitHub
  49. Plugin 'git://git.wincent.com/command-t.git'
  50. " git repos on your local machine (i.e. when working on your own plugin)
  51. "Plugin 'file:///home/gmarik/path/to/plugin'
  52. " The sparkup vim script is in a subdirectory of this repo called vim.
  53. " Pass the path to set the runtimepath properly.
  54. Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  55. " Install L9 and avoid a Naming conflict if you've already installed a
  56. " different version somewhere else.
  57. " Plugin 'ascenator/L9', {'name': 'newL9'}
  58.  
  59. Plugin 'vim-airline/vim-airline'
  60. Plugin 'vim-airline/vim-airline-themes'
  61.  
  62. Plugin 'lithammer/vim-eighties'
  63. Plugin 'sainnhe/vim-color-lost-shrine'
  64. Plugin 'jaredgorski/SpaceCamp'
  65. Plugin 'elmindreda/vimcolors'
  66. Plugin 'leafOfTree/vim-vue-plugin'
  67.  
  68. " All of your Plugins must be added before the following line
  69. call vundle#end()            " required
  70. filetype plugin indent on    " required
  71. " To ignore plugin indent changes, instead use:
  72. "filetype plugin on
  73. "
  74. " Brief help
  75. " :PluginList       - lists configured plugins
  76. " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
  77. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  78. " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
  79. "
  80. " see :h vundle for more details or wiki for FAQ
  81. " Put your non-Plugin stuff after this line
  82.  
  83. colors phosphor
  84. syntax on
  85. set laststatus=2
  86. set go-=T
  87. set encoding=utf-8
  88. set number
  89. set rop=type:directx,gamma:1.0,contrast:0.5,level:1,geom:1,renmode:4,taamode:1
  90. let g:airline_powerline_fonts = 1
  91. if !exists('g:airline_symbols')
  92.   let g:airline_symbols = {}
  93. endif
  94.  
  95. " unicode symbols
  96. let g:airline_left_sep = '»'
  97. let g:airline_left_sep = '▶'
  98. let g:airline_right_sep = '«'
  99. let g:airline_right_sep = '◀'
  100. let g:airline_symbols.linenr = '␊'
  101. let g:airline_symbols.linenr = '␤'
  102. let g:airline_symbols.linenr = '¶'
  103. let g:airline_symbols.branch = '⎇'
  104. let g:airline_symbols.paste = 'ρ'
  105. let g:airline_symbols.paste = 'Þ'
  106. let g:airline_symbols.paste = '∥'
  107. let g:airline_symbols.whitespace = 'Ξ'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement