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:prosession_dir = $vimdir."/session/" let g:jsonnet_fmt_on_save = 0 call plug#begin($vimdir.'/plugged') Plug 'junegunn/vim-plug' " plugin manager should manage itself Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' " helpers for using fzf in vim Plug 'nathanaelkane/vim-indent-guides' " indentation guides Plug 'bkad/CamelCaseMotion' " camel case and underscore word movements Plug 'vim-scripts/LargeFile' " gracefully handle very large files Plug 'tpope/vim-commentary' " toggle comments in code easily Plug 'tpope/vim-repeat' " better vim repeating for plugin-provided actions Plug 'christoomey/vim-tmux-navigator' " allow window navigation to play nicely with tmux Plug 'machakann/vim-sandwich' " quickly modify text surrounding objects Plug 'michaeljsmith/vim-indent-object' " adds an indentation level text object Plug 'wellle/targets.vim' " adds some more handy text objects Plug 'junegunn/goyo.vim' " better distraction-free editing Plug 'tpope/vim-sleuth' " try and detect indent method Plug 'editorconfig/editorconfig-vim' " loads project-specific editor settings Plug 'google/vim-jsonnet', {'for': ['jsonnet', 'libsonnet']} Plug 'calviken/vim-gdscript3', {'for': ['gdscript']} call plug#end() filetype on filetype indent on filetype plugin on " use :h option-list if you need to know what these do set fcs=eob:\+ 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: anything else useful? :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 syntax enable colorscheme base16-donokai call matchadd('ColorColumn', '\%81v', 100) 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=7 ctermfg=0 " jump to last opened position in file except in git commits au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") && index(['gitcommit'], &ft) | exe "normal! g'\"" | endif inoremap jj inoremap jk nnoremap :GitFiles nnoremap :Files nnoremap :GFiles? nnoremap :Buffers au FileType fzf tnoremap 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 w :bd nnoremap h :b# nnoremap k :bnext nnoremap j :bprevious nnoremap / :let @/ = "": nnoremap t :split:term:resize 24:startinsert tnoremap :q! " TODO: learn about the wildmenu `q:`