init.vim 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. " Any valid git URL is allowed
  32. Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  33. " Multiple Plug commands can be written in a single line using | separators
  34. Plug 'SirVer/ultisnips'
  35. Plug 'honza/vim-snippets'
  36. " On-demand loading
  37. Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
  38. Plug 'Xuyuanp/nerdtree-git-plugin'
  39. Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
  40. Plug 'Valloric/YouCompleteMe'
  41. " Using a non-master branch
  42. Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
  43. Plug 'ncm2/ncm2', { 'do': ':UpdateRemotePlugins'}
  44. Plug 'roxma/nvim-yarp'
  45. " NOTE: you need to install completion sources to get completions. Check
  46. " our wiki page for a list of sources: https://github.com/ncm2/ncm2/wiki
  47. Plug 'ncm2/ncm2-bufword'
  48. " Plug 'ncm2/ncm2-tmux'
  49. Plug 'ncm2/ncm2-path'
  50. " Plug 'ncm2/utilsnips'
  51. Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  52. Plug 'autozimu/LanguageClient-neovim', {
  53. \ 'branch': 'next',
  54. \ 'do': 'bash install.sh',
  55. \ }
  56. Plug 'junegunn/fzf'
  57. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
  58. Plug 'zchee/deoplete-clang'
  59. " Unmanaged plugin (manually installed and updated)
  60. Plug '~/my-prototype-plugin'
  61. Plug 'autozimu/LanguageClient-neovim', {
  62. \ 'branch': 'next',
  63. \ 'do': 'zsh install.sh'
  64. \ }
  65. Plug 'pangloss/vim-javascript'
  66. Plug 'https://github.com/tpope/vim-fugitive'
  67. Plug 'airblade/vim-gitgutter'
  68. Plug 'ludovicchabant/vim-gutentags'
  69. Plug 'zivyangll/git-blame.vim'
  70. Plug 'simplyzhao/cscope_maps.vim'
  71. Plug 'bfrg/vim-cpp-modern'
  72. Plug 'tpope/vim-commentary'
  73. Plug 'octol/vim-cpp-enhanced-highlight'
  74. call plug#end()
  75. let g:ycm_global_ycm_extra_conf = '~/.local/share/nvim/plugs/YouCompleteMe/.ycm_extra_conf.py'
  76. " C++ syntax highlighting modifications
  77. let g:cpp_class_scope_highlight = 1
  78. let g:cpp_member_variable_highlight = 1
  79. let g:cpp_class_decl_highlight = 1
  80. let g:cpp_experimental_template_highlight = 1
  81. let g:airline#extensions#tabline#enabled = 1
  82. " Chromatica for better better C/C++ syntax highlighting
  83. let g:chromatica#libclang_path='/usr/local/opt/llvm/lib'
  84. let g:chromatica#enable_at_startup=1
  85. " enable ncm2 for all buffers
  86. autocmd BufEnter * call ncm2#enable_for_buffer()
  87. " IMPORTANTE: :help Ncm2PopupOpen for more information
  88. set completeopt=noinsert,menuone,noselect
  89. autocmd StdinReadPre * let s:std_in=1
  90. " Open NERDTree if vim is launched with no file
  91. " autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
  92. " Map Ctrl-N to toggle nerd tree
  93. map <C-n> :NERDTreeToggle<CR>
  94. " Close vim if NERDTree is the only window left open
  95. " autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
  96. nnoremap <Leader>s :<C-u>call gitblame#echo()<CR>
  97. " Any additional tags that we might need (3rfd party C++ libraries, for
  98. " example)
  99. "
  100. set tags+=/usr/local/include/node
  101. " colorscheme codedark
  102. let g:PaperColor_Theme_Options = {
  103. \ 'language': {
  104. \ 'python': {
  105. \ 'highlight_builtins' : 1
  106. \ },
  107. \ 'cpp': {
  108. \ 'highlight_standard_library': 1
  109. \ },
  110. \ 'c': {
  111. \ 'highlight_builtins' : 1
  112. \ }
  113. \ }
  114. \ }