init.vim 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. let g:python_host_prog = '/usr/local/bin/python'
  2. let g:python3_host_prog = '/usr/local/bin/python3'
  3. " set t_Co=256
  4. set number
  5. set laststatus=2
  6. set background=dark
  7. set shiftwidth=4
  8. set showcmd
  9. set nocompatible
  10. set path+=**
  11. set wildmenu
  12. " colorscheme PaperColor
  13. " colorscheme ubloh
  14. colorscheme muon
  15. " Specify a directory for plugins
  16. " - For Neovim: ~/.local/share/nvim/plugged
  17. " - Avoid using standard Vim directory names like 'plugin'
  18. call plug#begin('~/.local/share/nvim/plugs')
  19. " Make sure you use single quotes
  20. Plug 'arakashic/chromatica.nvim'
  21. Plug 'abudden/taghighlight-automirror'
  22. Plug 'tomasiser/vim-code-dark'
  23. Plug 'romainl/Apprentice'
  24. Plug 'junegunn/vim-easy-align'
  25. Plug 'vim-airline/vim-airline'
  26. Plug 'vim-airline/vim-airline-themes'
  27. Plug 'cocopon/iceberg.vim'
  28. Plug 'drewtempelmeyer/palenight.vim'
  29. Plug 'ayu-theme/ayu-vim'
  30. Plug 'arcticicestudio/nord-vim'
  31. " Remove whitespace
  32. Plug 'ntpeters/vim-better-whitespace'
  33. " Any valid git URL is allowed
  34. Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  35. " Multiple Plug commands can be written in a single line using | separators
  36. Plug 'SirVer/ultisnips'
  37. Plug 'honza/vim-snippets'
  38. " On-demand loading
  39. Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
  40. Plug 'Xuyuanp/nerdtree-git-plugin'
  41. Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
  42. Plug 'Valloric/YouCompleteMe'
  43. " Using a non-master branch
  44. Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
  45. Plug 'ncm2/ncm2', { 'do': ':UpdateRemotePlugins'}
  46. Plug 'roxma/nvim-yarp'
  47. " NOTE: you need to install completion sources to get completions. Check
  48. " our wiki page for a list of sources: https://github.com/ncm2/ncm2/wiki
  49. Plug 'ncm2/ncm2-bufword'
  50. " Plug 'ncm2/ncm2-tmux'
  51. Plug 'ncm2/ncm2-path'
  52. " Plug 'ncm2/utilsnips'
  53. Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  54. Plug 'autozimu/LanguageClient-neovim', {
  55. \ 'branch': 'next',
  56. \ 'do': 'bash install.sh',
  57. \ }
  58. Plug 'junegunn/fzf'
  59. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
  60. Plug 'zchee/deoplete-clang'
  61. " Unmanaged plugin (manually installed and updated)
  62. Plug '~/my-prototype-plugin'
  63. Plug 'autozimu/LanguageClient-neovim', {
  64. \ 'branch': 'next',
  65. \ 'do': 'zsh install.sh'
  66. \ }
  67. Plug 'pangloss/vim-javascript'
  68. Plug 'https://github.com/tpope/vim-fugitive'
  69. Plug 'airblade/vim-gitgutter'
  70. Plug 'ludovicchabant/vim-gutentags'
  71. Plug 'zivyangll/git-blame.vim'
  72. Plug 'simplyzhao/cscope_maps.vim'
  73. Plug 'bfrg/vim-cpp-modern'
  74. Plug 'tpope/vim-commentary'
  75. Plug 'octol/vim-cpp-enhanced-highlight'
  76. call plug#end()
  77. let g:ycm_global_ycm_extra_conf = '~/.local/share/nvim/plugs/YouCompleteMe/.ycm_extra_conf.py'
  78. " C++ syntax highlighting modifications
  79. let g:cpp_class_scope_highlight = 1
  80. let g:cpp_member_variable_highlight = 1
  81. let g:cpp_class_decl_highlight = 1
  82. let g:cpp_experimental_template_highlight = 1
  83. let g:airline#extensions#tabline#enabled = 1
  84. " Chromatica for better better C/C++ syntax highlighting
  85. let g:chromatica#libclang_path='/usr/local/opt/llvm/lib'
  86. let g:chromatica#enable_at_startup=1
  87. " enable ncm2 for all buffers
  88. autocmd BufEnter * call ncm2#enable_for_buffer()
  89. " IMPORTANTE: :help Ncm2PopupOpen for more information
  90. set completeopt=noinsert,menuone,noselect
  91. autocmd StdinReadPre * let s:std_in=1
  92. " Open NERDTree if vim is launched with no file
  93. " autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
  94. " Map Ctrl-N to toggle nerd tree
  95. map <C-n> :NERDTreeToggle<CR>
  96. " Close vim if NERDTree is the only window left open
  97. " autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
  98. nnoremap <Leader>s :<C-u>call gitblame#echo()<CR>
  99. " Any additional tags that we might need (3rfd party C++ libraries, for
  100. " example)
  101. "
  102. set tags+=/usr/local/include/node
  103. " colorscheme codedark
  104. let g:PaperColor_Theme_Options = {
  105. \ 'language': {
  106. \ 'python': {
  107. \ 'highlight_builtins' : 1
  108. \ },
  109. \ 'cpp': {
  110. \ 'highlight_standard_library': 1
  111. \ },
  112. \ 'c': {
  113. \ 'highlight_builtins' : 1
  114. \ }
  115. \ }
  116. \ }