vimrc/init.vim

129 lines
3.4 KiB
VimL
Raw Normal View History

" set the directory where my vimrc git project is located
2018-03-23 08:47:18 -04:00
source ~/.config/nvim/local.vim
" it is a big fat key, after all
2015-10-13 22:49:55 -04:00
" N.B. should come before plugins and plugin specific settings
let mapleader = "\<Space>"
" source aux files also under git control
let oldwd = getcwd()
exec "cd " . vimrc_git
source plug.vim
2019-05-16 11:47:38 -04:00
source ncm2.vim
source airline.vim
source syntastic.vim
source fzf.vim
source mapping.vim
source jsonnet.vim
2017-09-09 13:02:44 -04:00
source racer.vim
2018-01-04 12:58:23 -05:00
source lsp.vim
source autoformat.vim
exec "cd " . oldwd
" set up a line number on the current line but relative above and below to help
" with motion commands
set number
set relativenumber
" even with the nice space/tab autodetect, prefer 4 for tab stops
" but let file type specifics override (for instance a setting of 2 for markdown
set tabstop=4
" default to folding on syntax
set foldmethod=syntax
" set a readable width
set textwidth=80
" make white space visible, where that matters
set list!
" except for help
autocmd FileType help setlocal nolist
" set up folding preferences
set fde=1
" vim's spelling is smart enough for code, to only check comments
set spell
" add a hint for long lines
set colorcolumn=120
" default to expanding tabs, I'm not insane
set expandtab
2015-10-13 11:29:03 -04:00
" change buffer behaviors to no longer require changes when hiding a buffer
set hidden
" look for vimrc in the current director as well as $MYVIMRC
set exrc
" make looking for local changes secure
set secure
2015-04-01 11:13:36 -04:00
" more secure
set modelines=0
" preserve some context
set scrolloff=3
" make the cursor a bit easier to follows
set cursorline
" make search work a bit more like tab completion in bash
set incsearch
set wildmode=longest:full
set wildmenu
" line break handling
set linebreak
set showbreak=+
" always on status line
set laststatus=2
" let backspace work more naturally
set backspace=start,indent,eol
" favor modern encoding
set enc=utf-8
" more readable config for list mode
set listchars+=nbsp,tab:»·,trail
set listchars-=eol:$
" smarter handling of case during search
set ignorecase
set smartcase
" disable outdated data loss protections
set nobackup
set noswapfile
" make pastemode more accessible
set pastetoggle=<F2>
2015-04-01 11:13:36 -04:00
" save when moving away
au FocusLost * :wa
" make sure to set TERM to xterm-256color in terminal program or app
2018-11-23 09:41:13 -05:00
colorscheme breezy
2018-04-04 11:38:43 -04:00
set background=light
2018-04-04 11:37:21 -04:00
set termguicolors
2018-07-11 08:25:13 -04:00
" ensure autoread works, to detect file changes outside the editor
set autoread
au CursorHold * checktime
2018-11-23 09:40:59 -05:00
2020-02-06 09:37:51 -05:00
" for gui, make it easier to tell different instances apart
2020-05-02 11:18:18 -04:00
set title
2018-11-23 09:40:59 -05:00
" keep nvim from resetting font back to default from terminal config
set guicursor=
2019-09-19 16:54:12 -04:00
set guioptions-=r
set guioptions-=b
set guioptions-=T
set guioptions-=m
2020-05-02 11:18:18 -04:00
set gfn=DejaVu\ Sans\ Mono\ for\ Powerline:h13
2019-09-19 16:54:12 -04:00
" from https://stackoverflow.com/a/51424640
2020-05-02 11:18:18 -04:00
let s:fontsize = 13
2019-09-19 16:54:12 -04:00
function! AdjustFontSize(amount)
let s:fontsize = s:fontsize+a:amount
2019-09-27 15:23:52 -04:00
:execute "set gfn=DejaVu\\ Sans\\ Mono\\ for\\ Powerline:h" . s:fontsize
2019-09-19 16:54:12 -04:00
endfunction
noremap <C-Up> :call AdjustFontSize(1)<CR>
noremap <C-Down> :call AdjustFontSize(-1)<CR>
inoremap <C-Up> <Esc>:call AdjustFontSize(1)<CR>a
inoremap <C-Down> <Esc>:call AdjustFontSize(-1)<CR>a
2020-01-18 10:15:37 -05:00
2020-01-28 17:36:10 -05:00
" widen the default display of the taskwarrior plugin to make the description
" wrap less
2020-01-18 10:15:37 -05:00
let g:task_rc_override = 'rc.defaultwidth=120'
2020-01-28 17:36:10 -05:00
" override the default location of vimwiki and change to markdown
2020-03-12 13:38:56 -04:00
let g:vimwiki_list = [{'path': '~/Documents/Wiki', 'syntax': 'markdown', 'ext': '.md'}]
2020-01-28 17:36:10 -05:00
let g:vimwiki_dir_link = 'index'