init.vim 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 'ludovicchabant/vim-gutentags'
  58. Plug 'simplyzhao/cscope_maps.vim'
  59. call plug#end()
  60. let g:ycm_global_ycm_extra_conf = '~/.local/share/nvim/plugs/YouCompleteMe/.ycm_extra_conf.py'
  61. " enable ncm2 for all buffers
  62. autocmd BufEnter * call ncm2#enable_for_buffer()
  63. " IMPORTANTE: :help Ncm2PopupOpen for more information
  64. set completeopt=noinsert,menuone,noselect
  65. autocmd StdinReadPre * let s:std_in=1
  66. " Open NERDTree if vim is launched with no file
  67. " autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
  68. " Map Ctrl-N to toggle nerd tree
  69. map <C-n> :NERDTreeToggle<CR>
  70. " Close vim if NERDTree is the only window left open
  71. " autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif