MAINT: vim config reboot, continued

This commit is contained in:
Matthew Ryan Dillon 2020-07-27 16:43:14 -07:00
parent 42906e0b5d
commit 5534ec7f34
2 changed files with 43 additions and 3 deletions

View file

@ -2,6 +2,7 @@ setw -g automatic-rename
set-option -g default-shell /bin/zsh set-option -g default-shell /bin/zsh
set -g default-command "reattach-to-user-namespace -l ${SHELL}" set -g default-command "reattach-to-user-namespace -l ${SHELL}"
set -g default-terminal "screen-256color"
set -g prefix C-a set -g prefix C-a
unbind C-b unbind C-b

45
vimrc
View file

@ -7,16 +7,55 @@ syntax on
" built-in plugin, `%` to jump to condition branch " built-in plugin, `%` to jump to condition branch
runtime macros/matchit.vim runtime macros/matchit.vim
let mapleader=" "
set autoindent set autoindent
set backspace=indent,eol,start set backspace=indent,eol,start
set hidden " have more than one unsaved buffer set hidden
set incsearch set incsearch
set ruler " show position in bottom-right set ruler
set wildmenu set wildmenu
set number
set list
set listchars=tab:▸\ ,extends:>,precedes:<,trail:~
set cursorline
set colorcolumn=80
set backup
set backupdir=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
set backupskip=/tmp/*,/private/tmp/*
set directory=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp
set writebackup
set expandtab
nmap <leader>j :bnext<CR>
nmap <leader>k :bprevious<CR>
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'sheerun/vim-polyglot' Plug 'airblade/vim-gitgutter'
Plug 'chriskempson/base16-vim'
Plug 'ludovicchabant/vim-gutentags' Plug 'ludovicchabant/vim-gutentags'
Plug 'ntpeters/vim-better-whitespace'
Plug 'sheerun/vim-polyglot'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'wakatime/vim-wakatime'
call plug#end() call plug#end()
" for Plug 'chriskempson/base16-vim'
let base16colorspace=256
source ~/.vimrc_background
" for Plug 'ludovicchabant/vim-gutentags'
let g:gutentags_cache_dir = '~/.gutentags_cache' let g:gutentags_cache_dir = '~/.gutentags_cache'
" for Plug 'ntpeters/vim-better-whitespace'
let g:better_whitespace_enabled=1
let g:strip_whitespace_on_save=1
" for Plug 'vim-airline/vim-airline'
set laststatus=2
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#fnamemod=':t'
" for Plug 'vim-airline/vim-airline-themes'
let g:airline_theme='base16'