dotfiles/.vimrc

178 lines
3.9 KiB
VimL
Raw Normal View History

" \ / o _ _
" \/ | | | |
2020-04-21 12:29:05 -04:00
set nocp
set shell=/usr/bin/zsh
2020-04-21 12:29:05 -04:00
set tsr+=~/.vim/thesaurus/thesaurus-vim-en
set dict+=/usr/share/dict/words
2020-04-21 13:31:21 -04:00
set tags=./tags;/ " Search up to / for tags file
set updatetime=100
set clipboard=unnamedplus " Use system clipboard
2021-12-29 19:15:04 -05:00
if empty($DISPLAY)
colorscheme elflord
else
set termguicolors
let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
let &t_8b = "\<Esc>[48:2:%lu:%lu:%lum"
syntax enable
colorscheme jellybeans
endif
2020-04-21 12:29:05 -04:00
let mapleader=" "
" Auto open NERDTree but focus editing window
autocmd VimEnter * NERDTree
autocmd BufEnter * NERDTreeMirror
autocmd VimEnter * wincmd w
autocmd VimEnter * NERDTreeFind
autocmd VimEnter * wincmd w
" Auto close NERDTree
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
2021-10-06 14:18:30 -04:00
autocmd VimEnter COMMIT_EDITMSG NERDTreeClose
set mouse=a
2020-04-21 12:29:05 -04:00
2020-04-22 13:39:45 -04:00
set backspace=indent,eol,start
2020-04-21 12:29:05 -04:00
set splitbelow
set splitright
set foldmethod=syntax
set foldlevelstart=99
" Leave some room when scrolling
set scrolloff=3
2020-04-21 12:29:05 -04:00
nnoremap :W<CR> :w<CR>
set conceallevel=0
2020-04-21 13:31:21 -04:00
" Use 4 spaces
2020-06-12 18:47:51 -04:00
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
2020-04-21 13:31:21 -04:00
2020-04-21 12:29:05 -04:00
" Except for makefiles
autocmd FileType make setlocal noexpandtab
2020-04-21 13:31:21 -04:00
" *** BINDINGS ***
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
" Beautful escapes
2020-06-07 13:43:01 -04:00
inoremap fd <Esc>l
2020-04-21 13:31:21 -04:00
inoremap jj <Esc>l
inoremap jk <Esc>l
inoremap kj <Esc>l
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
" C comment
nnoremap // m`I//<Esc>``:s-////--<Cr>
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
" Current-file keywords
inoremap <C-J> <C-X><C-N>
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
" Line numbers
set number relativenumber
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
set ignorecase smartcase
set autoindent smartindent
"Yank to clipboard
nnoremap <C-C> "+yy
vnoremap <C-C> "+y
2020-04-21 12:29:05 -04:00
2020-04-21 13:31:21 -04:00
" List buffers
nnoremap <Leader>b :ls<CR>:b<Space>
2020-04-21 12:29:05 -04:00
nnoremap <C-I> ^
2020-04-21 13:31:21 -04:00
2020-04-21 12:29:05 -04:00
nnoremap U ~
2020-04-21 13:31:21 -04:00
nnoremap ~ U
2020-04-21 12:29:05 -04:00
" Paste last yank (not delete))
nnoremap "p "0p
" Window jumps
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
2020-05-15 15:49:38 -04:00
tnoremap <C-J> <C-W><C-J>
tnoremap <C-K> <C-W><C-K>
tnoremap <C-L> <C-W><C-L>
tnoremap <C-H> <C-W><C-H>
2020-04-21 12:29:05 -04:00
" Jump to next/prev uppercase/underscore
nnoremap f<cr> /[A-Z_]<cr>
nnoremap F<cr> ?[A-Z_]<cr>
2020-04-21 12:29:05 -04:00
" Map directions to end/beginning of lines
nnoremap yl y$
nnoremap yh y^
nnoremap dl d$
nnoremap dh d^
" <C-P> will replace text after the cursor with unnamed reg contents
nnoremap <C-P> m`v$hp``y$
" Generate and display a printable version
nnoremap <Leader>PP :ha > ~/.vim.ps<CR>:!xdg-open ~/.vim.ps<CR>
vnoremap <Leader>PP :ha > ~/.vim.ps<CR>:!xdg-open ~/.vim.ps<CR>
" Swap current word with next
nnoremap gs "xdiwdwep"xp
" Inverted
nnoremap gb dawbP
2020-04-23 12:37:37 -04:00
nnoremap <Leader>c :!cat % <Bar> xclip -selection clipboard<CR>
2020-04-21 14:33:53 -04:00
nnoremap <Leader>p :w<CR>:!make run<CR>
2020-04-21 12:29:05 -04:00
nnoremap <Leader>gd :!git diff %<CR>
nnoremap <Leader>gD :!git diff<CR>
nnoremap <Leader>gB :!git blame %<CR>
nnoremap <Leader>gc :!git commit -m ""<Left>
nnoremap <Leader>gh :!git --help<CR>
nnoremap <Leader>gl :!git log<CR>
nnoremap <Leader>gp :!git push<CR>
nnoremap <Leader>gu :!git add -u<CR>
nnoremap <Leader>ga :!git add %<CR>
nnoremap <Leader>r :source ~/.vimrc<CR>
nnoremap <Leader>n :tabedit~/.notes<CR>
nnoremap <Leader>v :vert term ++cols=80<CR>
nnoremap <Leader>t :term ++rows=20<CR>
2020-04-21 12:29:05 -04:00
autocmd BufNewFile,BufRead * if expand('%:t') !~ '\.' | setl spell | endif
" Expand %% to the current files dir
cabbr <expr> %% expand('%:p:h')
cnoreabbrev vimc tabedit ~/.vimrc
" Skeletons "
if has ("autocmd")
augroup templates
autocmd BufNewFile *.cpp 0r ~/.vim/templates/skeleton.cpp
autocmd BufNewFile *.c 0r ~/.vim/templates/skeleton.c
autocmd BufNewFile *.sh 0r ~/.vim/templates/skeleton.sh
autocmd BufNewFile *.lisp 0r ~/.vim/templates/skeleton.lisp
autocmd BufNewFile *.py 0r ~/.vim/templates/skeleton.py
autocmd BufNewFile *.rb 0r ~/.vim/templates/skeleton.rb
autocmd BufNewFile makefile 0r ~/.vim/templates/makefile
augroup END
endif
nnoremap <RightMouse> p
inoremap <RightMouse> <Esc>p
" Spelling corrections
iab ruetn return
iab reteun return
iab reutner return
" Keep same gutter color when errored
highlight! link SignColumn LineNr
so ~/.vim/user/files.vim