Browse Source

:CheckHealth updates for nvim, remove snippets for now because it causes neovim to error

angrygoats 7 years ago
parent
commit
5e80e0e168
  1. 22
      dotfiles/config/nvim/init.vim
  2. 2
      dotfiles/tmux.conf
  3. 2
      dotfiles/zshrc

22
dotfiles/config/nvim/init.vim

@ -73,10 +73,6 @@ if !has("win32") || !has("win16")
endfunction endfunction
Plug 'Valloric/YouCompleteMe', { 'do': function('BuildYCM') } Plug 'Valloric/YouCompleteMe', { 'do': function('BuildYCM') }
" Tree explorer
"Instead of forcing vim to start Nerdtree just do it manually
" autocmd vimenter * NERDTree " make NERDTree come up automatically
" on vim start
Plug 'scrooloose/nerdtree' Plug 'scrooloose/nerdtree'
" For nerdtree indicators of what has changed " For nerdtree indicators of what has changed
@ -93,19 +89,21 @@ Plug 'godlygeek/tabular'
Plug 'plasticboy/vim-markdown' Plug 'plasticboy/vim-markdown'
" Snippet Support/Configuration " Snippet Support/Configuration
Plug 'SirVer/ultisnips' " Currently disabled because it irrepairably causes neovim to detonate more
Plug 'honza/vim-snippets' " than I care to deal with as of 5/26/2017
"Plug 'SirVer/ultisnips'
"Plug 'honza/vim-snippets'
" Database engine support " Database engine support
Plug 'https://github.com/vim-scripts/dbext.vim' Plug 'https://github.com/vim-scripts/dbext.vim'
let g:UltiSnipsExpandTrigger="<c-s>" "let g:UltiSnipsExpandTrigger="<c-s>"
let g:UltiSnipsJumpForwardTrigger="<c-b>" "let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>" "let g:UltiSnipsJumpBackwardTrigger="<c-z>"
let g:UltiSnipsSnippetsDir=["~/.config/nvim/plugged/vim-snippets/UltiSnips", "~/.config/nvim/snippets"] "let g:UltiSnipsSnippetsDir=["~/.config/nvim/plugged/vim-snippets/UltiSnips", "~/.config/nvim/snippets"]
" Allow UltiSnips to split the window vertically "" Allow UltiSnips to split the window vertically
let g:UltiSnipssEditSplit="vertical" "let g:UltiSnipssEditSplit="vertical"
""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""

2
dotfiles/tmux.conf

@ -4,6 +4,8 @@
# # # #
################################### ###################################
# Make sure screen is properly set for tmux
set-option -g default-terminal "screen-256color"
# Rebind tmux prefix to <c-space> to match vim # Rebind tmux prefix to <c-space> to match vim

2
dotfiles/zshrc

@ -13,7 +13,7 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then
fi fi
export EDITOR="$VISUAL" export EDITOR="$VISUAL"
export ITERM_24BIT=1 export ITERM_24BIT=1
export TERM=xterm-256color export TERM=screen-256color
export GOPATH=$HOME/go/ export GOPATH=$HOME/go/
export PATH=$PATH:"$GOPATH/bin" export PATH=$PATH:"$GOPATH/bin"

Loading…
Cancel
Save