Last active
May 15, 2020 12:27
-
-
Save ewingd/ce6919a77025215ecb6adf114414f154 to your computer and use it in GitHub Desktop.
Neovim Configuration - PHPStorm connection
This file contains 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
call plug#begin('~/AppData/Local/nvim/plugged') | |
Plug 'tpope/vim-fugitive' | |
Plug 'beeender/Comrade' | |
Plug 'Shougo/deoplete.nvim' | |
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
Plug 'junegunn/fzf.vim' | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'StanAngeloff/php.vim' | |
Plug 'jwalton512/vim-blade' | |
Plug 'drewtempelmeyer/palenight.vim' | |
Plug 'yorickpeterse/happy_hacking.vim' | |
Plug 'jaredgorski/spacecamp' | |
Plug 'tpope/vim-vividchalk' | |
Plug 'tomasr/molokai' | |
call plug#end() | |
let g:deoplete#enable_at_startup = 1 | |
let g:python3_host_prog = 'python' | |
let g:palenight_terminal_italics=1 | |
set shiftwidth=4 | |
set tabstop=4 | |
set expandtab | |
set termguicolors | |
set foldmethod=syntax | |
let php_folding=1 | |
"let $SHELL=shellescape('C:\Program Files\Git\bin\bash.exe') | |
"set shell=$SHELL | |
syntax on | |
filetype plugin indent on | |
nnoremap <C-p> :FZF<CR> | |
nnoremap <F3> :NERDTreeToggle<CR> | |
" Splits | |
set splitbelow | |
set splitright | |
nnoremap <C-J> <C-W><C-J> | |
nnoremap <C-K> <C-W><C-K> | |
nnoremap <C-L> <C-W><C-L> | |
nnoremap <C-H> <C-W><C-H> | |
nnoremap <Tab> :tabn<CR> | |
nnoremap <S-Tab> :tabp<CR> | |
colorscheme molokai |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment