init.vim 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. " Specify a directory for plugins
  14. " - For Neovim: ~/.local/share/nvim/plugged
  15. " - Avoid using standard Vim directory names like 'plugin'
  16. call plug#begin('~/.local/share/nvim/plugs')
  17. " Make sure you use single quotes
  18. " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
  19. Plug 'junegunn/vim-easy-align'
  20. Plug('arakashic/chromatica.nvim')
  21. " Any valid git URL is allowed
  22. Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  23. " Multiple Plug commands can be written in a single line using | separators
  24. Plug 'SirVer/ultisnips'
  25. Plug 'honza/vim-snippets'
  26. " On-demand loading
  27. Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
  28. Plug 'Xuyuanp/nerdtree-git-plugin'
  29. Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
  30. Plug 'Valloric/YouCompleteMe'
  31. " Using a non-master branch
  32. Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
  33. Plug 'ncm2/ncm2', { 'do': ':UpdateRemotePlugins'}
  34. Plug 'roxma/nvim-yarp'
  35. " NOTE: you need to install completion sources to get completions. Check
  36. " our wiki page for a list of sources: https://github.com/ncm2/ncm2/wiki
  37. Plug 'ncm2/ncm2-bufword'
  38. " Plug 'ncm2/ncm2-tmux'
  39. Plug 'ncm2/ncm2-path'
  40. " Plug 'ncm2/utilsnips'
  41. Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  42. Plug 'autozimu/LanguageClient-neovim', {
  43. \ 'branch': 'next',
  44. \ 'do': 'bash install.sh',
  45. \ }
  46. Plug 'junegunn/fzf'
  47. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
  48. Plug 'zchee/deoplete-clang'
  49. " Unmanaged plugin (manually installed and updated)
  50. Plug '~/my-prototype-plugin'
  51. Plug 'autozimu/LanguageClient-neovim', {
  52. \ 'branch': 'next',
  53. \ 'do': 'zsh install.sh'
  54. \ }
  55. Plug 'pangloss/vim-javascript'
  56. Plug 'https://github.com/tpope/vim-fugitive'
  57. Plug 'airblade/vim-gitgutter'
  58. Plug 'ludovicchabant/vim-gutentags'
  59. Plug 'zivyangll/git-blame.vim'
  60. Plug 'simplyzhao/cscope_maps.vim'
  61. Plug 'octol/vim-cpp-enhanced-highlight'
  62. call plug#end()
  63. let g:ycm_global_ycm_extra_conf = '~/.local/share/nvim/plugs/YouCompleteMe/.ycm_extra_conf.py'
  64. " C++ syntax highlighting modifications
  65. let g:cpp_class_scope_highlight = 1
  66. let g:cpp_member_variable_highlight = 1
  67. let g:cpp_class_decl_highlight = 1
  68. let g:cpp_experimental_template_highlight = 1
  69. " enable ncm2 for all buffers
  70. autocmd BufEnter * call ncm2#enable_for_buffer()
  71. " IMPORTANTE: :help Ncm2PopupOpen for more information
  72. set completeopt=noinsert,menuone,noselect
  73. autocmd StdinReadPre * let s:std_in=1
  74. " Open NERDTree if vim is launched with no file
  75. " autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
  76. " Map Ctrl-N to toggle nerd tree
  77. map <C-n> :NERDTreeToggle<CR>
  78. " Close vim if NERDTree is the only window left open
  79. " autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
  80. nnoremap <Leader>s :<C-u>call gitblame#echo()<CR>
  81. " Any additional tags that we might need (3rfd party C++ libraries, for
  82. " example)
  83. "
  84. set tags+=/usr/local/include/node