git config --global user.name "Matt Mix" git config --global user.email "[email protected]" git config --global core.editor nvim git config --global color.ui true
https://github.com/altercation/vim-colors-solarized
dnf install zsh curl -L http://install.ohmyz.sh | sh
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'seebi/tmux-colors-solarized'
set -g @plugin '[email protected]/user/plugin'
set -g @plugin '[email protected]/user/plugin'
run -b '~/.tmux/plugins/tpm/tpm'
set -g @colors-solarized 'dark' set -g default-command /bin/zsh
pip3 install --user --upgrade pynvim
https://github.com/deoplete-plugins/deoplete-go
" nerdtree map :NERDTreeToggle autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif " end nerdtree
" fzf map ; :FZF " end fzf
call plug#begin()
Plug 'junegunn/fzf', { 'dir': '/.fzf', 'do': './install --all' }
Plug 'w0rp/ale'
Plug 'sheerun/vim-polyglot'
Plug 'scrooloose/nerdtree'
Plug 'itchyny/lightline.vim'
Plug 'micha/vim-colors-solarized'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'deoplete-plugins/deoplete-go', { 'do': 'make'}
Plug 'nsf/gocode', { 'rtp': 'nvim', 'do': '/.config/nvim/plugged/gocode/nvim/symlink.sh' }
call plug#end()
if has('nvim') " Enable deoplete on startup let g:deoplete#enable_at_startup = 1 let g:deoplete#sources#go#gocode_binary = "/development/bin/gocode" endif
" tell it to use an undo file set undofile " set a directory to store the undo history set undodir=/root/.vimundo/ set hidden
set number
syntax enable set background=dark colorscheme solarized