scriptencoding utf-8 set fileencoding=utf8 let $vimdir = $XDG_CONFIG_HOME.'/nvim' if empty(glob($vimdir.'/autoload/plug.vim')) silent !curl -fLo $vimdir/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall --sync | source $vimdir.'init.vim' endif let g:indent_guide_auto_colors = 1 let g:indent_guides_enable_on_vim_startup = 1 let g:jsonnet_fmt_on_save = 0 let g:fzf_preview_window = ['down:40%:hidden', 'ctrl-/'] call plug#begin($vimdir.'/plugged') Plug 'junegunn/vim-plug' " plugin manager should manage itself Plug 'sheerun/vim-polyglot' " handles language-specific configuration Plug 'neovim/nvim-lspconfig' " deeper language integration via language servers Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' " helpers for using fzf in vim Plug 'editorconfig/editorconfig-vim' " loads project-specific editor settings Plug 'tpope/vim-sleuth' " try and detect indent method Plug 'vim-scripts/LargeFile' " gracefully handle very large files Plug 'nathanaelkane/vim-indent-guides' " indentation guides Plug 'christoomey/vim-tmux-navigator' " allow window navigation to play nicely with tmux Plug 'tpope/vim-commentary' " toggle comments in code easily Plug 'tpope/vim-repeat' " better vim repeating for plugin-provided actions Plug 'machakann/vim-sandwich' " quickly modify text surrounding objects Plug 'michaeljsmith/vim-indent-object' " adds an indentation level text object Plug 'bkad/CamelCaseMotion' " camel case and underscore word movements Plug 'wellle/targets.vim' " adds some more handy text objects Plug 'tpope/vim-obsession' " even better session handling Plug 'dhruvasagar/vim-prosession' " even better session handling call plug#end() filetype on filetype indent on filetype plugin on " use :h option-list if you need to know what these do set encoding=utf8 set tabstop=2 shiftwidth=2 softtabstop=2 noexpandtab set autoindent smartindent set list nostartofline listchars=trail:ยท,tab:\ \ ,trail:~ set linebreak formatoptions=crql1jn " TODO: see if there is more in `:h fo-table` set synmaxcol=200 set lazyredraw set scrolloff=8 sidescrolloff=15 set mouse=a set splitright splitbelow set noerrorbells visualbell t_vb= set nobackup nowritebackup noswapfile set timeout ttimeoutlen=100 timeoutlen=150 set hidden shortmess+=Ia set history=1000 set undofile undodir=$vimdir/undo undolevels=1000 undoreload=10000 set spellfile=$vimdir/spell/en.utf-8.add set ignorecase smartcase incsearch wrapscan hlsearch set foldmethod=syntax foldlevel=99 foldnestmax=10 foldlevelstart=99 " TODO: get good at folding set noautowrite autochdir autoread set nomodeline noshowmode noshowcmd laststatus=0 " TODO: custom modeline and buffer list? set clipboard+=unnamedplus set t_Co=256 let &fcs = 'eob: ' syntax enable colorscheme base16-donokai hi Search cterm=NONE ctermbg=blue ctermfg=black hi LineNr ctermbg=none ctermfg=8 hi CursorLineNr ctermbg=18 ctermfg=gray hi IndentGuidesEven ctermbg=18 hi Normal ctermbg=NONE hi ColorColumn ctermbg=15 ctermfg=0 hi TooLongColorColumn ctermbg=1 ctermfg=0 call matchadd('ColorColumn', '\%81v', 100) call matchadd('TooLongColorColumn', '\%121v', 200) command! W write inoremap jj inoremap jk nnoremap :GitFiles nnoremap :Files nnoremap :GFiles? nnoremap :Buffers nnoremap :TmuxNavigateLeft nnoremap :TmuxNavigateDown nnoremap :TmuxNavigateUp nnoremap :TmuxNavigateRight tnoremap :TmuxNavigateLeft tnoremap :TmuxNavigateDown tnoremap :TmuxNavigateUp tnoremap :TmuxNavigateRight map ,w CamelCaseMotion_w map ,b CamelCaseMotion_b map ,e CamelCaseMotion_e map ,ge CamelCaseMotion_ge omap ib CamelCaseMotion_ib xmap ib CamelCaseMotion_ib omap ie CamelCaseMotion_ie xmap ie CamelCaseMotion_ie map mw:%s/\s\+$//:let @/ = ""'w map :setlocal spell! nnoremap n 'Nn'[v:searchforward] nnoremap N 'nN'[v:searchforward] cnoremap cnoremap xnoremap < >gv let mapleader = "\" nnoremap r :source $vimdir/init.vim:echo 'Reloaded init.vim' nnoremap w :bd nnoremap h :b# nnoremap k :bnext nnoremap j :bprevious nnoremap / :let @/ = "": nnoremap t :split:term:resize 24:startinsert tnoremap :q! au BufReadPost * \ if line("'\"") > 1 && line("'\"") <= line("$") && &ft !~# 'commit' \ | exe "normal! g'\"" \ | endif au FileType fzf tnoremap luafile $vimdir/lsp.lua " TODO: learn about the wildmenu `q:`