-
-
Save RandellBrianKnight/454977990adcb6ec3d62ad612e896113 to your computer and use it in GitHub Desktop.
My NeoVim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let g:polyglot_disabled = ['markdown'] | |
| call plug#begin() | |
| " NERDTree | |
| Plug 'scrooloose/nerdtree' | |
| " Git integration | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'airblade/vim-gitgutter' | |
| " Linting | |
| Plug 'w0rp/ale' | |
| " PHP-specific integration | |
| Plug 'phpactor/phpactor' , {'do': 'composer install', 'for': 'php'} | |
| Plug 'ncm2/ncm2' | |
| Plug 'roxma/nvim-yarp' | |
| Plug 'phpactor/ncm2-phpactor' | |
| " Debugger | |
| Plug 'vim-vdebug/vdebug' | |
| " Snippets | |
| Plug 'SirVer/ultisnips' | |
| Plug 'honza/vim-snippets' | |
| " Comments | |
| Plug 'tpope/vim-commentary' | |
| " Search | |
| Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
| Plug 'junegunn/fzf.vim' | |
| " Syntax | |
| Plug 'sheerun/vim-polyglot' | |
| Plug 'matthewbdaly/vim-filetype-settings' | |
| " Themes | |
| Plug 'nanotech/jellybeans.vim' , {'as': 'jellybeans'} | |
| " Editorconfig | |
| Plug 'editorconfig/editorconfig-vim' | |
| call plug#end() | |
| "Completion with Deoplete | |
| let g:deoplete#enable_at_startup = 1 | |
| autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o | |
| "General | |
| syntax on | |
| colorscheme jellybeans | |
| set nu | |
| filetype plugin indent on | |
| set nocp | |
| set ruler | |
| set wildmenu | |
| set wildignore=.svn,CVS,.git,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif | |
| set mouse-=a | |
| set t_Co=256 | |
| "Code folding | |
| set foldmethod=manual | |
| "Tabs and spacing | |
| set autoindent | |
| set cindent | |
| set tabstop=4 | |
| set expandtab | |
| set shiftwidth=4 | |
| set smarttab | |
| "Search | |
| set hlsearch | |
| set incsearch | |
| set ignorecase | |
| set smartcase | |
| set diffopt +=iwhite | |
| "Use FZF for search | |
| nnoremap <C-p> :Files<Cr> | |
| let g:fzf_tags_command = 'ctags' | |
| "Open quickfix window after running git grep | |
| autocmd QuickFixCmdPost *grep* cwindow | |
| "Syntax highlighting in Markdown | |
| au BufNewFile,BufReadPost *.md set filetype=markdown | |
| let g:markdown_fenced_languages = ['bash=sh', 'css', 'django', 'javascript', 'js=javascript', 'json=javascript', 'perl', 'php', 'python', 'ruby', 'sass', 'xml', 'html', 'vim'] | |
| " PHPActor config | |
| " Include use statement | |
| nmap <Leader>u :call phpactor#UseAdd()<CR> | |
| " Invoke the context menu | |
| nmap <Leader>mm :call phpactor#ContextMenu()<CR> | |
| " Invoke the navigation menu | |
| nmap <Leader>nn :call phpactor#Navigate()<CR> | |
| " Goto definition of class or class member under the cursor | |
| nmap <Leader>o :call phpactor#GotoDefinition()<CR> | |
| " Transform the classes in the current file | |
| nmap <Leader>tt :call phpactor#Transform()<CR> | |
| " Generate a new class (replacing the current file) | |
| nmap <Leader>cc :call phpactor#ClassNew()<CR> | |
| " Extract expression (normal mode) | |
| nmap <silent><Leader>ee :call phpactor#ExtractExpression(v:false)<CR> | |
| " Extract expression from selection | |
| vmap <silent><Leader>ee :<C-U>call phpactor#ExtractExpression(v:true)<CR> | |
| " Extract method from selection | |
| vmap <silent><Leader>em :<C-U>call phpactor#ExtractMethod()<CR> | |
| " Advanced customization using autoload functions | |
| inoremap <expr> <c-x><c-k> fzf#vim#complete#word({'left': '15%'}) | |
| " %s is the error or warning message | |
| let g:ale_echo_msg_format = '%linter% says %s' | |
| " Map keys to navigate between lines with errors and warnings. | |
| nnoremap <leader>an :ALENextWrap<cr> | |
| nnoremap <leader>ap :ALEPreviousWrap<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment