dotfiles/.config/nvim/init.vim

341 lines
12 KiB
VimL
Raw Normal View History

2019-03-20 13:27:54 +00:00
" vim: set foldmethod=marker foldlevel=0 nomodeline:
" ================================================================================
" .init.vim / .vimrc of Marty Oehme {{{
" ================================================================================
"
" - stolen from many different sources including
" Steve Losh
" Junegunn Choi
" Tim Pope
2019-03-20 17:37:04 +00:00
" this config does not set nocompatible - neovim does this automatically
" this config does not set filetype plugin - vim-sensible does this
2019-03-20 13:27:54 +00:00
" }}}
" ================================================================================
" PLUGIN INSTALLATION - handled by VIM-PLUG {{{
" ================================================================================
"
" automatically install vim-plug if it does not exist
" Note: this installs it in the neovim folder, not the vim folder
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" automatically install any missing plugins
autocmd VimEnter *
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| PlugInstall --sync | q
\| endif
2019-03-13 14:08:39 +00:00
" defines plugin directory
2019-03-04 10:47:17 +00:00
" Install plugins from vim with :PlugInstall
silent! if plug#begin('~/.local/share/nvim/plugged')
2019-03-04 10:47:17 +00:00
2019-03-13 14:08:39 +00:00
" Base
2019-03-20 15:12:13 +00:00
" a minimal definition of variables TODO still necessary for nvim?
2019-03-04 10:47:17 +00:00
Plug 'tpope/vim-sensible'
2019-03-20 15:12:13 +00:00
" add seamless movement between vim and tmux, switch windows with C-hjkl
Plug 'christoomey/vim-tmux-navigator'
" automatically switch between relative and absolute numbers as buffers move
" into / out of focus (requires number & relativenumber to be set)
Plug 'jeffkreeftmeijer/vim-numbertoggle'
2019-03-13 14:08:39 +00:00
2019-03-20 23:06:40 +00:00
" " Workflow
2019-03-20 17:46:02 +00:00
Plug 'tpope/vim-commentary' " easily toggle comments for lines, paragraphs etc with gc
Plug 'tommcdo/vim-exchange' " adds exchange operator with cx. common use: cxiw . on 2 words to switch
Plug 'tpope/vim-surround' " lets you change surrounding things with cs (or ds to del, ys to add)
2019-03-20 18:41:22 +00:00
Plug 'kana/vim-textobj-user' " dependency for most other textobj plugins
Plug 'reedes/vim-textobj-sentence' " extends the capabilities of sentence detection
" and allows you to jump to the *end* of this <g)> or last <g(> sentence.
2019-03-17 18:45:29 +00:00
2019-03-20 23:06:40 +00:00
" " Ecosystem
" " Plug 'tpope/vim-fugitive' - Will have to take a closer look some other time
2019-03-20 15:13:18 +00:00
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " show a directory listing within vim
2019-03-20 23:06:40 +00:00
Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' } " show git status in nerdtree for files and dirs
Plug 'Yggdroot/LeaderF', { 'on': ['Leaderf', 'LeaderfFile', 'LeaderfBuffer'], 'do': './install.sh' } " fuzzy matcher, apparently faster than fzf, ctrlp, unit, denite
2019-03-13 14:08:39 +00:00
" Language Integration
2019-03-17 18:45:29 +00:00
Plug 'sheerun/vim-polyglot' " syntax plugins for almost every language
2019-03-09 20:27:14 +00:00
Plug 'stephpy/vim-yaml'
2019-03-20 23:06:40 +00:00
Plug 'mhartington/nvim-typescript', {'for': 'typescript','do': './install.sh'}
2019-03-17 18:45:29 +00:00
" HTML Workflow
2019-03-20 23:06:40 +00:00
Plug 'valloric/matchtagalways', { 'on': [] }
Plug 'alvan/vim-closetag', { 'on': [] }
Plug 'jiangmiao/auto-pairs', { 'on': [] } " Auto close brackets and ''
augroup load_html_utils
autocmd!
autocmd InsertEnter * call plug#load('matchtagalways', 'vim-closetag', 'auto-pairs')
\| autocmd! load_html_utils
augroup END
2019-03-17 18:45:29 +00:00
2019-03-20 18:41:22 +00:00
" Markdown & Prose Workflow
2019-03-20 23:06:40 +00:00
Plug 'reedes/vim-pencil', { 'for': ['mkd', 'txt'], 'on': 'Goyo' } " provide md convenience functions like hard/softwrap
Plug 'junegunn/goyo.vim', { 'for': ['mkd', 'txt'], 'on': 'Goyo' } " provide distraction free writing
Plug 'junegunn/limelight.vim', { 'for': ['mkd', 'txt'], 'on': 'Goyo' } " provide even distraction free-er writing (lowlight paragraphs)
Plug 'rhysd/vim-grammarous', { 'for': ['mkd', 'txt'], 'on': 'Goyo' } " integrate vim with languagetool for grammar checking (needs java8)
2019-03-20 17:37:04 +00:00
2019-03-17 18:45:29 +00:00
" For async completion
2019-03-20 23:06:40 +00:00
Plug 'Shougo/deoplete.nvim', { 'on': [] } " automatic suggestions, can also perhaps be changed for newer plugs
Plug 'w0rp/ale', { 'on': [] } " asynchronous linting - might be superseded by lsp or coc.nvim at some point
" lazy loading since they require a lot of startup time
augroup load_ide_features
autocmd!
autocmd InsertEnter * call plug#load('ale', 'deoplete.nvim')
\| autocmd! load_ide_features
autocmd InsertEnter * call deoplete#enable()
augroup END
2019-03-04 10:47:17 +00:00
2019-03-13 14:08:39 +00:00
" Design
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'edkolev/tmuxline.vim'
2019-03-13 14:08:39 +00:00
" Colorschemes
Plug 'Nequo/vim-allomancer'
2019-03-20 15:12:46 +00:00
Plug 'morhetz/gruvbox'
Plug 'nightsense/snow'
2019-03-13 14:08:39 +00:00
2019-03-04 10:47:17 +00:00
call plug#end()
endif
2019-03-09 20:27:14 +00:00
2019-03-20 13:27:54 +00:00
" }}}
" ================================================================================
" PLUGIN CONFIGURATION {{{
" ================================================================================
2019-03-20 15:13:18 +00:00
" PLUGIN: NERDTree
" highlight the line the cursor is on
let NERDTreeHighlightCursorline = 1
" remove Press ? for help
let NERDTreeMinimalUI=1
" loads nerdtree plugin when starting vim with a directory
" this is necessary when we lazyload nerdtree with vimplug above
" since it would only get loaded with nttoggle otherwise, and run netrw
augroup nerd_loader
autocmd!
autocmd VimEnter * silent! autocmd! FileExplorer
autocmd BufEnter,BufNew *
\ if isdirectory(expand('<amatch>'))
\| call plug#load('nerdtree')
\| execute 'autocmd! nerd_loader'
\| endif
augroup END
2019-03-20 17:37:04 +00:00
" PLUGIN: markdown-group
" set .markdown, .md to both use the default mkd filetype which vim-markdown
" uses as its syntax
au! BufRead,BufNewFile *.markdown set filetype=mkd
au! BufRead,BufNewFile *.md set filetype=mkd
" automatically enables markdown plugins for md files, as well as plaintext
augroup markdown
autocmd!
autocmd FileType mkd call pencil#init()
autocmd FileType txt call pencil#init()
augroup END
" enable syntax highlighting for codeblocks WITHIN markdown
let g:markdown_fenced_languages = ['html', 'python', 'bash=sh', 'javascipt', 'go']
2019-03-20 18:41:22 +00:00
" PLUGIN: vim-textobj-sentence
" enable extended sentence textobject use on md and plaintext files
augroup textobj_sentence
autocmd!
autocmd FileType mkd call textobj#sentence#init()
autocmd FileType txt call textobj#sentence#init()
augroup END
2019-03-20 17:37:04 +00:00
" PLUGIN: vim-pencil
" set default wrap mode to hard - TODO test which mode works better for
" me, it seems hardmode has trouble with markdown lists (see issue #31)
let g:pencil#wrapModeDefault = 'soft' " default is 'hard'
2019-03-20 17:37:04 +00:00
" PLUGIN: goyo
" set up functions for entering/exiting distraction free mode, or leaving it
function! s:goyo_enter()
" remove the tmux status bar for actual distraction free environment
silent !tmux set status off
" maximize the tmux pane that vim is in if any (usually I have vim open as the only pane)
silent !tmux list-panes -F '\#F' | grep -q Z || tmux resize-pane -Z
" disable line highlighting, we really don't need it for prose
set nocursorline
2019-03-20 17:37:04 +00:00
" enable limelight which highlights whatever paragraph you are in and lowlights the rest
Limelight
endfunction
function! s:goyo_leave()
silent !tmux set status on
silent !tmux list-panes -F '\#F' | grep -q Z && tmux resize-pane -Z
set cursorline
2019-03-20 17:37:04 +00:00
Limelight!
endfunction
" actually call the functions on entering/leaving goyo
autocmd! User GoyoEnter nested call <SID>goyo_enter()
autocmd! User GoyoLeave nested call <SID>goyo_leave()
2019-03-20 15:13:18 +00:00
" PLUGIN: DEOPLETE
" enable deoplete at startup
2019-03-20 23:06:40 +00:00
let g:deoplete#enable_at_startup = 0
2019-03-20 15:13:18 +00:00
let g:deoplete#enable_ignore_case = 1
let g:deoplete#enable_smart_case = 1
let g:deoplete#enable_camel_case = 1
let g:deoplete#enable_refresh_always = 1
let g:deoplete#max_abbr_width = 0
let g:deoplete#max_menu_width = 0
let g:deoplete#omni#input_patterns = get(g:,'deoplete#omni#input_patterns',{})
" PLUGIN: ALE
let g:ale_fix_on_save = 1
let g:ale_fixers = {
\'javascipt': ['eslint', 'prettier'],
\'html': ['tidy','prettier'],
\'typescript': ['prettier','tslint'],
\'*': ['remove_trailing_lines', 'trim_whitespace'],
\}
" PLUGIN: AIRLINE
" PLUGIN: TMUXLINE
2019-03-13 14:08:39 +00:00
let g:airline_powerline_fonts=1
let g:airline_theme='raven'
colorscheme gruvbox
" disable automatically refreshing the mux statusbar since it breaks tmux
" prefix highlighting. Instead, when changing vim statusbar just create
" snapshot with :TmuxlineSnapshot file and stick it into tmux config manually
let g:airline#extensions#tmuxline#enabled = 0
" custom preset with left-justified window list
let g:tmuxline_preset = {
\'a' : '#S',
\'b' : '#(whoami)',
\'c' : '#I:#P',
\'win' : '#I #W',
\'cwin' : [' ', '#I #W'],
\'x' : '#{prefix_highlight} %H:%M:%S',
\'y' : '%d-%b-%y',
\'z' : '#H',
\'options' : {}}
2019-03-09 20:27:14 +00:00
2019-03-15 15:26:57 +00:00
" automatically save the current buffer when navigating away from vim
let g:tmux_navigator_save_on_switch = 1
2019-03-20 13:27:54 +00:00
" }}}
" ================================================================================
" VIM SETTINGS {{{
" ================================================================================
"
2019-03-13 14:08:39 +00:00
" set truecolor (neovim)
set termguicolors
" sets tabs to be 2 characters, expanded into spaces, but still removable with
2019-03-09 20:27:14 +00:00
" one press of backspace.
" great explanation: http://vimcasts.org/transcripts/2/en/
2019-03-17 18:45:29 +00:00
set tabstop=2
set shiftwidth=2
set softtabstop=2
2019-03-09 20:27:14 +00:00
set expandtab
" set cursor line highlighting, esp useful when using with bracket
" highlighting and you don't know which side of the brace the cursor is on
set cursorline
2019-03-09 20:27:14 +00:00
" shows linenumbers relative to the one you are on, for easy movement and
" dNUMBERd deletions
set number relativenumber
2019-03-09 20:27:14 +00:00
" keeps an undofile next to files so that you can even undo if vim is closed
" in between
set undofile
" ignores case by default but will use case when search is specifically not
" all lowercased
set ignorecase
set smartcase
2019-03-13 14:08:39 +00:00
" whenever vim loses focus, save
au FocusLost * :wa
" disables showing us the current mode in the command line since airline takes
" care of it
set noshowmode
2019-03-17 18:45:29 +00:00
" highlight everything that goes over 80 columns
highlight ColorColumn ctermbg=magenta
call matchadd('ColorColumn', '\%81v', 100)
2019-03-20 13:27:54 +00:00
" }}}
" ================================================================================
" KEYBINDINGS {{{
" ================================================================================
2019-03-13 14:08:39 +00:00
"
" set our leader key to space since with hjkl, space is largely useless
let mapleader = "\<Space>"
" set jk to escape, in case capslock is not mapped to escape on the system
inoremap jk <ESC>
" remove search highlights by pressing space+/ - the key for searching the
" first place
nnoremap <leader>/ :noh<cr>
2019-03-09 20:27:14 +00:00
" move around between matching brackets with tab
nnoremap <tab> %
nnoremap <tab> %
2019-03-13 14:08:39 +00:00
" select the whole buffer with <leader>-a
map <leader>a ggVG
2019-03-20 13:30:36 +00:00
" quickly edit vimrc with leader+V
2019-03-13 14:08:39 +00:00
map <leader>V :vsp ~/.config/nvim/init.vim<cr>
2019-03-20 13:30:36 +00:00
" automatically source the vimrc file whenever it is saved (causes slowdown
" when done in MANY successions)
" au BufWritePost init.vim so ~/.config/nvim/init.vim
2019-03-13 14:08:39 +00:00
" get rid of the help message popping up when I miss esc and hit F1
nnoremap <F1> <ESC>
inoremap <F1> <ESC>
vnoremap <F1> <ESC>
" remove all trailing whitespaces
2019-03-20 13:30:36 +00:00
" on pressing space+W
2019-03-13 14:08:39 +00:00
nnoremap <leader>W :%s/\s\+$//<cr>:let @/=''<CR>
2019-03-20 13:30:36 +00:00
" automatically on saving
" autocmd BufWritePre * :%s/\s\+$//e
2019-03-13 14:08:39 +00:00
" 'open new tab' with leader-t (opens new buffer and switches to it)
2019-03-15 15:26:57 +00:00
" open actual new tab with leader-T
2019-03-17 18:45:29 +00:00
nnoremap <leader>t :vsp .<cr>
2019-03-15 15:26:57 +00:00
nnoremap <leader>T :tabedit .<cr>
" save current buffer with Ctrl-s
nnoremap <C-s> :w<cr>
2019-03-20 15:13:18 +00:00
" open/close NERDtree with leader-e
" whatever method tree has been opened by, leader-e closes it again
nnoremap <leader>e :NERDTreeToggle<CR>
2019-03-20 15:13:18 +00:00
" open root of current VCS project in tree
nnoremap <leader><C-e> :NERDTreeVCS<CR>
" open current nerdtree with current file highlighted
nnoremap <leader>E :NERDTreeFind<CR>
2019-03-20 13:27:54 +00:00
2019-03-20 17:37:04 +00:00
" Mostly dealing with Prose writing from here on out
" Format current Paragraph (esp useful in prose writing)
nnoremap <silent> <leader>q gqap
xnoremap <silent> <leader>q gq
nnoremap <silent> <leader>Q vapJgqap
" Enter distraction free prose mode with F11
noremap <F11> :Goyo<CR>
2019-03-20 23:06:40 +00:00
" Call leaderf with <leader-f> (necessary to enable leaderf lazyloading)
nnoremap <leader>f :LeaderfFile<cr>
nnoremap <leader>F :LeaderfBuffer<cr>
2019-03-20 23:06:40 +00:00
2019-03-20 13:27:54 +00:00
" }}}
" ================================================================================
" END
" ================================================================================