Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

658 lines
21 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
7 years ago
5 years ago
3 months ago
5 years ago
5 years ago
3 months ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 months ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1 year ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
6 years ago
5 years ago
1 year ago
6 years ago
1 year ago
5 years ago
5 years ago
1 year ago
5 years ago
6 years ago
1 year ago
5 years ago
1 year ago
6 years ago
4 years ago
5 years ago
5 years ago
3 years ago
4 years ago
3 years ago
4 years ago
5 years ago
5 years ago
  1. " set x=y [[[ "
  2. set autoindent
  3. set autoread
  4. set background=dark
  5. " set colorcolumn=80
  6. set clipboard+=unnamedplus
  7. set diffopt=filler,context:3
  8. if has('nvim-0.3.2') || has("patch-8.1.0360")
  9. set diffopt=filler,internal,algorithm:histogram,indent-heuristic
  10. endif
  11. set encoding=utf-8
  12. set expandtab
  13. " set foldmethod=indent
  14. set foldmethod=marker
  15. set hlsearch
  16. " set ignorecase
  17. set linebreak
  18. set linespace=5
  19. set mouse=a
  20. " set mouse=c
  21. set nofixendofline
  22. " set noswapfile
  23. set relativenumber
  24. set shiftwidth=4
  25. set smartcase
  26. set tabstop=4
  27. " set t_Co=256
  28. " set termguicolors
  29. set timeoutlen=350
  30. " set timeoutlen=200
  31. " set tw=75
  32. " set tw=70
  33. set tw=60
  34. set undodir=~/.vim/undo
  35. set undofile
  36. " set updatetime=1000
  37. " set updatetime=500
  38. set updatetime=0
  39. autocmd VimResized * wincmd =
  40. filetype plugin on
  41. filetype indent on
  42. syntax on
  43. autocmd CursorHold * if !bufexists("[Command Line]") | checktime | endif
  44. " cursor indicator [[[ "
  45. " set listchars=tab:\|\
  46. " set list
  47. " set cursorcolumn
  48. " set cursorline
  49. " ]]] cursor indicator "
  50. " ]]] set x=y "
  51. " commands for file types [[[ "
  52. autocmd BufNewFile,BufRead .* set syntax=sh
  53. autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown
  54. autocmd FileType *css,gitcommit,haskell,htmldjango,html,graphql,javascript,javascriptreact,json,lisp,markdown,
  55. \racket,tex,text,yaml set tabstop=2 shiftwidth=2
  56. " autocmd BufNewFile,BufRead *.md set filetype=markdown
  57. " autocmd Filetype markdown set textwidth=0
  58. " autocmd Filetype html set foldmarker=0
  59. autocmd BufNewFile,BufRead *.gd set expandtab!
  60. autocmd Filetype go set noexpandtab sw=4
  61. " autocmd FileType go,html,java,javascript,python,lua set fdm=indent
  62. " autocmd FileType go,html,java,javascript,javascriptreact,Jenkinsfile,python,lua set fdm=indent
  63. autocmd FileType go,html,java,Jenkinsfile,python,lua set fdm=indent
  64. " autocmd FileType html,javascript,Jenkinsfile,python,lua set fdm=indent
  65. autocmd BufNewFile,BufRead *.gql setfiletype graphql
  66. autocmd Filetype markdown let g:AutoPairs = {'(':')', '[':']', '{':'}','"':'"', "`":"`", '```':'```', '"""':'"""', "'''":"'''", "*":"*"}
  67. " autocmd Filetype markdown map <F8> :LivedownToggle<CR>
  68. autocmd Filetype markdown let g:AutoPairs={'(':')', '[':']', '{':'}','"':'"', "`":"`", '```':'```', '"""':'"""', "'''":"'''","*":"*"}
  69. autocmd Filetype markdown map <F8> :InstantMarkdownPreview<CR>
  70. autocmd Filetype markdown map <F9> :InstantMarkdownStop<CR>:InstantMarkdownPreview<CR>
  71. autocmd Filetype markdown inoremap < <Esc><<A
  72. autocmd Filetype markdown inoremap << <
  73. autocmd Filetype markdown inoremap > <Esc>>>A
  74. autocmd Filetype markdown inoremap >> >
  75. " autocmd Filetype markdown set commentstring=<!---\ %s\ -->
  76. " format options [[[ "
  77. " a = auto-format paragraphs
  78. " c = wrap comments
  79. " j = remove comment header when joining lines
  80. " M = don't add space when joining lines
  81. " q = format comments with gq
  82. " t = wrap lines
  83. " v = break lines in insert
  84. " w = whitespace continues paragraph
  85. " ]]] format options "
  86. " autocmd FileType markdown,tex,text set spell spelllang=en_us formatoptions=acjMqtvw
  87. autocmd FileType markdown,tex,text set spell spelllang=en_us formatoptions=cjMqtvw
  88. autocmd Filetype groovy,Jenkinsfile,taskdata set tw=0
  89. autocmd Filetype json nnoremap <leader>j :%!python -m json.tool<CR>
  90. autocmd Filetype json set foldmethod=marker
  91. autocmd Filetype racket set commentstring=;%s;
  92. autocmd Filetype racket let g:AutoPairs = {'(':')', '[':']', '{':'}','"':'"', "`":"`", '```':'```', '"""':'"""', "'''":"'''"}
  93. autocmd FileType sh map <F8> :!clear && shellcheck %<CR>
  94. autocmd FileType tex set updatetime=1000 timeoutlen=300
  95. autocmd FileType tex map <F8> :VimtexCompile<CR>
  96. autocmd VimEnter *.tex VimtexCompile
  97. autocmd VimLeave *.tex !tex-clean %:p
  98. autocmd BufNewFile,BufRead *.tmpl set tw=0 sw=2 ft=go-template fmr=[[[,]]]
  99. " " auto-reload vimrc [[[ "
  100. " augroup myvimrc
  101. " au!
  102. " au BufWritePost .vimrc,_vimrc,vimrc,.gvimrc,_gvimrc,gvimrc so $MYVIMRC | if has('gui_running') | so $MYGVIMRC | endif
  103. " augroup END
  104. " " ]]] auto-reload vimrc "
  105. " ]]] commands for file types "
  106. " commands for specific files [[[ "
  107. autocmd BufNewFile,BufRead watson*.fish set tabstop=2 shiftwidth=2 expandtab
  108. autocmd BufWritePost config.def.h silent !cd %:p:h; sudo rm config.h; sudo bear make install
  109. " autocmd BufRead config.def.h map <F8> :silent !cd %:p:h; sudo rm config.h; sudo bear make install<CR>
  110. autocmd BufRead config.def.h map <F10> :silent !cd %:p:h<CR>:!sudo rm config.h; sudo bear make install<CR>
  111. autocmd BufRead config.def.h set updatetime=3000
  112. autocmd BufRead commit-msg.txt set filetype=gitcommit tw=72
  113. autocmd VimLeave /etc/default/grub !sudo grub-mkconfig -o /boot/grub/grub.cfg
  114. " autocmd BufWritePost key_* !sync-shortcuts
  115. autocmd BufNewFile,BufRead key_* map <F1> :w<CR>:silent !sync-shortcuts<CR>
  116. " map <F1> :silent !scp %:p k@192.168.0.17:/home/k/a1<CR>
  117. " map <F2> :silent !scp -P 2222 e1.html e1_style.css kevin@127.0.0.1:/home/kevin/Downloads/e1<CR>
  118. " map <F6> :make -C ~/Documents/resume cv<CR>
  119. " ]]] commands for specific files "
  120. " vim-plug [[[
  121. " plug auto-install
  122. if empty(glob('~/.vim/autoload/plug.vim'))
  123. silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
  124. \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  125. autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
  126. endif
  127. call plug#begin('~/.vim/plugged')
  128. " prequisite for other plugins
  129. Plug 'vim-scripts/L9'
  130. " find files from within Vim
  131. " Plug 'vim-scripts/FuzzyFinder'
  132. {{ if not .gui }}
  133. " Gotham color scheme
  134. Plug 'whatyouhide/vim-gotham'
  135. {{ end }}
  136. " " collection of Vim color schemes
  137. " Plug 'flazz/vim-colorschemes'
  138. " " preview Vim color scheme easily within Vim
  139. " Plug 'xolox/vim-colorscheme-switcher'
  140. " " prerequisite for above plugin
  141. " Plug 'xolox/vim-misc'
  142. " automatically save buffers upon returning to normal mode
  143. Plug '907th/vim-auto-save'
  144. let g:auto_save = 1
  145. " let g:auto_save_events = ["CursorHold", "CursorHoldI"]
  146. let g:auto_save_events = ["CursorHold"]
  147. " autocmd VimEnter *.tex let g:auto_save = 0
  148. " provides various functionality for writing LaTeX in Vim
  149. Plug 'lervag/vimtex'
  150. " au BufWritePost *.tex silent call Tex_RunLaTeX()
  151. au BufWritePost *.tex silent !pkill -USR1 xdvi.bin
  152. let g:Tex_MultipleCompileFormats = 'dvi,pdf'
  153. " let g:vimtex_view_general_viewer = 'evince'
  154. let g:vimtex_view_general_viewer = 'zathura'
  155. " let g:vimtex_quickfix_latexlog = {
  156. " \ 'overfull' : 0,
  157. " \ 'underfull' : 0,
  158. " \ 'global' : 0,
  159. " \ 'packages' : {
  160. " \ 'biblatex' : 0,
  161. " \ 'gensymb' : 0,
  162. " \ },
  163. " \ 'references' : 0,
  164. " \ 'unused' : 0,
  165. " \}
  166. let g:vimtex_quickfix_ignore_filters = [
  167. \'Overfull',
  168. \]
  169. let g:vimtex_quickfix_autoclose_after_keystrokes = 5
  170. let g:vimtex_compiler_latexmk = {
  171. \ 'continuous' : 1,
  172. \}
  173. " \ 'continuous' : 0,
  174. {{ if not (eq .chezmoi.username "root") }}
  175. " auto-completion for various languages
  176. " arc
  177. Plug 'Valloric/YouCompleteMe'
  178. let g:ycm_filetype_blacklist = {
  179. \ 'tagbar': 1,
  180. \ 'qf': 1,
  181. \ 'notes': 1,
  182. \ 'unite': 1,
  183. \ 'vimwiki': 1,
  184. \ 'pandoc': 1,
  185. \ 'infolog': 1,
  186. \ 'mail': 1
  187. \}
  188. {{ end }}
  189. " wrote short bits of text that expand into whatever you want
  190. " demo: https://www.youtube.com/watch?v=Zik6u0klD40
  191. Plug 'SirVer/ultisnips'
  192. " better key bindings for UltiSnipsExpandTrigger
  193. let g:UltiSnipsExpandTrigger = "<tab>"
  194. let g:UltiSnipsJumpForwardTrigger = "<tab>"
  195. let g:UltiSnipsJumpBackwardTrigger = "<C-tab>"
  196. let g:ultisnips_javascript = {
  197. \ 'keyword-spacing': 'always',
  198. \ 'semi': 'never',
  199. \ 'space-before-function-paren': 'never',
  200. \ }
  201. " custom snippets
  202. Plug 'Kevin-Mok/vim-snippets'
  203. " to make YouCompleteMe work with UltiSnips (both use Tab)
  204. Plug 'ervandew/supertab'
  205. " make YCM compatible with UltiSnips (using supertab)
  206. let g:ycm_key_list_select_completion = ['<C-n>', '<Down>']
  207. let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>']
  208. let g:SuperTabDefaultCompletionType = '<C-n>'
  209. " easily comment/uncomment lines
  210. Plug 'scrooloose/nerdcommenter'
  211. let g:NERDTrimTrailingWhitespace = 1
  212. let g:NERDSpaceDelims = 1
  213. " add quotes/brackets around chunks of text easily
  214. Plug 'tpope/vim-surround'
  215. nmap S ys
  216. " navigate around file easily and precisely
  217. Plug 'easymotion/vim-easymotion'
  218. map <Space> <Plug>(easymotion-prefix)
  219. " status bar displaying various info about the current buffer
  220. Plug 'vim-airline/vim-airline'
  221. let g:airline_section_c = '%F'
  222. Plug 'vim-airline/vim-airline-themes'
  223. let g:airline_powerline_fonts = 1
  224. " continue Markdown lists when started
  225. " arc
  226. Plug 'dkarter/bullets.vim'
  227. " coordinate Vim color scheme with terminal color scheme
  228. Plug 'dylanaraps/wal.vim'
  229. " repeat plugin commands
  230. Plug 'tpope/vim-repeat'
  231. " better Django support
  232. Plug 'tweekmonster/django-plus.vim'
  233. " auto-close brackets
  234. Plug 'jiangmiao/auto-pairs'
  235. let g:AutoPairsMapSpace = 0
  236. Plug 'henrik/vim-indexed-search'
  237. Plug 'PotatoesMaster/i3-vim-syntax'
  238. " vim file explorer
  239. Plug 'terryma/vim-multiple-cursors'
  240. " let g:multi_cursor_select_all_word_key='<C-a>'
  241. let g:multi_cursor_exit_from_visual_mode=0
  242. let g:multi_cursor_exit_from_insert_mode=0
  243. Plug 'dag/vim-fish'
  244. " live preview Markdown"
  245. Plug 'suan/vim-instant-markdown', {'for': 'markdown'}
  246. let g:instant_markdown_autostart = 0
  247. let g:instant_markdown_port = 8888
  248. " Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
  249. " let g:mkdp_auto_start = 1
  250. " let g:mkdp_browser = 'firefox'
  251. " let g:mkdp_echo_preview_url = 1
  252. " git helper
  253. Plug 'tpope/vim-fugitive'
  254. " auto reload file
  255. Plug 'djoshea/vim-autoread'
  256. " Plug 'mustache/vim-mustache-handlebars'
  257. " Plug 'trapd00r/vim-syntax-vidir-ls'
  258. Plug 'calviken/vim-gdscript3'
  259. " display hex colors in Vim
  260. " Plug 'RRethy/vim-hexokinase'
  261. Plug 'junegunn/goyo.vim'
  262. " prevent commands being executed through modelines "
  263. Plug 'ciaranm/securemodelines/'
  264. " different colors for each layer of surrounding brackets
  265. Plug 'luochen1990/rainbow'
  266. let g:rainbow_active = 1
  267. " easy custom text objects
  268. Plug 'kana/vim-textobj-user'
  269. " latex custom text objects
  270. Plug 'rbonvall/vim-textobj-latex'
  271. " swap words
  272. Plug 'tommcdo/vim-exchange'
  273. " Plug 'scrooloose/nerdtree'
  274. " let NERDTreeQuitOnOpen=1
  275. " let NERDTreeShowHidden=1
  276. " Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  277. " Plug 'junegunn/fzf.vim'
  278. Plug 'christoomey/vim-tmux-navigator'
  279. " mappings [[[ "
  280. let g:tmux_navigator_no_mappings = 1
  281. nnoremap <A-j> :TmuxNavigateDown<cr>
  282. nnoremap <A-k> :TmuxNavigateUp<cr>
  283. nnoremap <A-h> :TmuxNavigateLeft<cr>
  284. nnoremap <A-l> :TmuxNavigateRight<cr>
  285. " nnoremap <C-Down> :TmuxNavigateDown<cr>
  286. " nnoremap <C-Up> :TmuxNavigateUp<cr>
  287. " nnoremap <C-Left> :TmuxNavigateLeft<cr>
  288. " nnoremap <C-Right> :TmuxNavigateRight<cr>
  289. " ]]] mappings "
  290. " highlight multiple words
  291. " TODO: mapping conflicts "
  292. " Plug 'inkarkat/vim-mark'
  293. " Plug 'jceb/vim-orgmode'
  294. " let g:org_todo_keywords=['TODO', 'STARTED', '|', 'DONE']
  295. Plug 'junegunn/vim-easy-align'
  296. " Start interactive EasyAlign in visual mode (e.g. vipga)
  297. xmap ga <Plug>(EasyAlign)
  298. " Start interactive EasyAlign for a motion/text object (e.g. gaip)
  299. nmap ga <Plug>(EasyAlign)
  300. Plug 'wlangstroth/vim-racket'
  301. Plug 'neovimhaskell/haskell-vim'
  302. " Plug 'masukomi/vim-markdown-folding'
  303. Plug 'mikeboiko/vim-markdown-folding'
  304. autocmd FileType markdown set foldexpr=NestedMarkdownFolds()
  305. Plug 'cespare/vim-toml'
  306. Plug 'dpelle/vim-LanguageTool'
  307. " increment dates with C-a
  308. Plug 'tpope/vim-speeddating'
  309. Plug 'martinda/Jenkinsfile-vim-syntax'
  310. Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
  311. let g:go_fmt_command = ""
  312. Plug 'buoto/gotests-vim'
  313. Plug 'tomlion/vim-solidity'
  314. Plug 'jparise/vim-graphql'
  315. Plug 'maxmellon/vim-jsx-pretty'
  316. Plug 'mlaursen/vim-react-snippets', { 'branch': 'main' }
  317. Plug 'cristianoliveira/vim-react-html-snippets'
  318. Plug 'jidn/vim-dbml'
  319. " ]]] vim-plug "
  320. " Mappings [[[ "
  321. call plug#end()
  322. {{ if .gui }}
  323. colorscheme wal
  324. {{ else }}
  325. colorscheme gotham256
  326. {{ end }}
  327. " normal mappings [[[ "
  328. nnoremap <ScrollWheelUp> <C-U>
  329. nnoremap <ScrollWheelDown> <C-D>
  330. nnoremap Y yy
  331. " visual select across lines by default "
  332. nnoremap v <C-V>
  333. " last macro "
  334. nnoremap Q @@
  335. " toggle fold "
  336. nnoremap , za
  337. " jump to horizontal position for mark "
  338. nnoremap ' `
  339. " indenting
  340. nnoremap > >>
  341. nnoremap < <<
  342. inoremap << <Esc><<A
  343. " ]]] normal mappings "
  344. " leader mappings [[[ "
  345. let mapleader="\<Space>"
  346. " find alias
  347. nnoremap <leader>a /^ <Left>
  348. nnoremap <leader>ac :.s/\(\w\w\)/\u\1\U\2/g<CR>
  349. " replace until end of line
  350. nnoremap <leader>c c$
  351. " delete until end of line
  352. nnoremap <leader>d d$
  353. " delete entire buffer
  354. nnoremap <leader>dg ggdG
  355. " delete entire line
  356. nnoremap <leader>dl 0d$
  357. " delete lines matching pattern
  358. " nnoremap <leader>dls :g//d<left><left>
  359. nnoremap <leader>dls q:ig//d<left><left>
  360. " show docstring for cur word
  361. nnoremap <leader>do :YcmCompleter GetDoc<CR>
  362. " delete line into system clipboard
  363. nnoremap <leader>D "+dd
  364. " delete entire buffer into system clipboard
  365. nnoremap <leader>DA "+ggdG
  366. " find copied text
  367. nnoremap <leader>f q/p<CR>
  368. " find merge conflicts
  369. nnoremap <leader>fc /[<>=\|]\{7\}<CR>
  370. " reload folds
  371. nnoremap <leader>fmi :set foldmethod=indent<CR> zM
  372. nnoremap <leader>fmm :set foldmethod=marker<CR> zM
  373. " add marker foldmethod modeline
  374. nnoremap <leader>fi :YcmCompleter FixIt<CR>
  375. " check filetype
  376. nnoremap <leader>ft :se ft?<CR>
  377. " check todo's
  378. nnoremap <leader>ftd /TODO<CR>
  379. " nnoremap <leader>g :YcmCompleter GoTo<CR>
  380. nnoremap <leader>g :vs \| YcmCompleter GoTo<CR>
  381. " nnoremap <leader>gb <C-O>
  382. nnoremap <leader>gb :Git blame<CR>
  383. " vimdiff split
  384. nnoremap <leader>gd :Gvdiff
  385. nnoremap <leader>gdh :Gvdiff HEAD^
  386. nnoremap <leader>gdm :Gvdiff master<CR>
  387. nnoremap <leader>gdo :Gvdiff orig/master<CR>
  388. " toggle search highlighting
  389. nnoremap <leader>h :set hlsearch! hlsearch?<CR>
  390. " help
  391. nnoremap <leader>he :vert help
  392. nnoremap <leader>ht :set tabstop=2 shiftwidth=2 expandtab<CR>
  393. nnoremap <leader>vhe :vert help
  394. " don't add space when joining lines "
  395. " nnoremap <leader>j gJ
  396. " jump forward
  397. nnoremap <leader>j <C-I>
  398. " join all paragraphs into single line "
  399. nnoremap <leader>jl :set tw=9999999<CR>gggqG
  400. " jump back
  401. nnoremap <leader>k <C-O>
  402. " format current line
  403. nnoremap <leader>l Vgq
  404. " format this and next line
  405. nnoremap <leader>ll Vjgq
  406. " move cursor to middle of line
  407. " nnoremap <leader>m :call cursor(0, len(getline('.'))/2)<CR>
  408. nnoremap <leader>m :vert Man
  409. " apply normal command to selection
  410. vnoremap <leader>n q:anorm
  411. " turn off autoformat"
  412. nnoremap <leader>na :set spell spelllang=en_us formatoptions=cjMqtvw<CR>
  413. nnoremap <leader>nt :NERDTree<CR>
  414. " check if in neovim
  415. nnoremap <leader>nv :echo has('nvim')<CR>
  416. " don't wrap lines
  417. nnoremap <leader>nw :set nowrap<CR>
  418. " recursively open fold
  419. nnoremap <leader>o zO
  420. " paste from?
  421. " nnoremap <leader>p "*p
  422. " format paragraph
  423. nnoremap <leader>p gqip
  424. " Plug commands
  425. nnoremap <leader>pli :PlugInstall<CR>
  426. nnoremap <leader>plc :PlugClean<CR>
  427. nnoremap <leader>plu :PlugUpdate<CR>
  428. " don't break lines
  429. nnoremap <leader>py :set tw=0<CR>
  430. " replace in next x lines
  431. " nnoremap <leader>r q:i.,.+s///g<ESC>Fsi
  432. " replace in line
  433. nnoremap <leader>r q:i.s///g<left><left><left>
  434. " replace in visual selection
  435. vnoremap <leader>r q:is///g<ESC>3ha
  436. " replace in entire file
  437. " nnoremap <leader>R q:i%s///g<ESC>2F/i
  438. nnoremap <leader>ra q:i%s///g<ESC>2F/i
  439. " remove italics tags
  440. nnoremap <leader>rmi :%s/<\/\?i>//g<CR>
  441. nnoremap <leader>rn :YcmCompleter RefactorRename
  442. nnoremap <leader>rs :res
  443. " reload vim config
  444. nnoremap <leader>rv :source $MYVIMRC<CR>
  445. vnoremap <leader>s :sort<CR>
  446. nnoremap <leader>sc :set spell spelllang=en_us<CR>
  447. " run current file in shell
  448. nnoremap <leader>sh :!%:p
  449. " sort lines until end of file
  450. nnoremap <leader>so q:i.,$sort<CR>
  451. " vertical split "
  452. nnoremap <leader>sp :sp
  453. " sort lines
  454. nnoremap <leader>sol q:i.,.+sort<ESC>Fsi
  455. " set syntax to shell (for dotfiles)
  456. nnoremap <leader>sys :set syn=sh<CR>
  457. vnoremap <leader>t :!tac<CR>
  458. " capitalize letter
  459. nnoremap <leader>u vU
  460. " comment visual block
  461. " nnoremap <leader>vcc V<leader>cc
  462. " uncomment visual block
  463. " nnoremap <leader>vcu V<leader>cu
  464. " horizontal split "
  465. nnoremap <leader>vs :vs
  466. " open vimrc in vertical split
  467. nnoremap <leader>vv :vsp ~/.vimrc<CR>
  468. " copy next thing to system clipboard
  469. " nnoremap <leader>y "+
  470. " nnoremap <leader>Y "+Y
  471. nnoremap <leader>y y$
  472. nnoremap <leader>yo :Goyo<CR>
  473. " yank entire buffer
  474. nnoremap <leader>yg ggyG
  475. " toggle fold
  476. nnoremap <leader>z za
  477. " close all folds
  478. nnoremap <leader>zm zM
  479. " open all folds
  480. nnoremap <leader>zr zR
  481. " ]]] leader mappings "
  482. " function keys [[[ "
  483. map <F3> :wa<CR>
  484. map <F4> :xa<CR>
  485. map <F5> :q!<CR>
  486. map <F6> :qa!<CR>
  487. map <F7> :AutoSaveToggle<CR>
  488. " reload file
  489. nnoremap <F9> :e<CR>
  490. nnoremap <F10> :set paste<CR>"+p:set nopaste<CR>
  491. nnoremap <F11> :set paste<CR>"*p:set nopaste<CR>
  492. " ]]] function keys "
  493. map <S-Enter> O<ESC>
  494. " swap text visually
  495. vnoremap <C-P> <Esc>`.``gvP``P
  496. ino <C-A> <C-O>yiW<End>=<C-R>=<C-R>0<CR>
  497. " splits [[[ "
  498. nnoremap <C-Down> <C-W><C-J>
  499. nnoremap <C-Up> <C-W><C-K>
  500. nnoremap <C-Right> <C-W><C-L>
  501. nnoremap <C-Left> <C-W><C-H>
  502. " Maximize height/width.
  503. nnoremap <C-g> <C-W>_
  504. nnoremap <C-w> <C-W>|
  505. " ]]] splits "
  506. " ]]] Mappings "
  507. " Local Mappings [[[ "
  508. let maplocalleader="\\"
  509. " tex [[[ "
  510. autocmd Filetype tex noremap i$ :<C-u>normal! T$vt$<CR>
  511. autocmd Filetype tex noremap i$ :normal vi$<CR>
  512. autocmd Filetype tex xnoremap a$ :<C-u> normal!F$vf$<CR>
  513. autocmd Filetype tex onoremap a$ :normal va$<CR>
  514. autocmd Filetype tex inoremap <localleader>bt \bowtie
  515. autocmd Filetype tex inoremap <localleader>c \checkmark
  516. autocmd Filetype tex inoremap <localleader>d \div
  517. autocmd Filetype tex inoremap <localleader>D \Delta
  518. autocmd Filetype tex inoremap <localleader>e \exists
  519. autocmd Filetype tex inoremap <localleader>ep \epsilon
  520. autocmd Filetype tex inoremap <localleader>fa \forall
  521. autocmd Filetype tex inoremap <localleader>g \geq
  522. autocmd Filetype tex inoremap <localleader>i \in
  523. autocmd Filetype tex inoremap <localleader>la \leftarrow
  524. autocmd Filetype tex inoremap <localleader>le \leq
  525. autocmd Filetype tex inoremap <localleader>ln \log n
  526. autocmd Filetype tex inoremap <localleader>lr \Leftrightarrow
  527. autocmd Filetype tex inoremap <localleader>m \mu
  528. " autocmd Filetype tex inoremap <localleader>n \neg
  529. autocmd Filetype tex inoremap <localleader>n \neq
  530. autocmd Filetype tex inoremap <localleader>N \mathbb{N}
  531. autocmd Filetype tex inoremap <localleader>pg \pagebreak<Enter>
  532. autocmd Filetype tex inoremap <localleader>ph [,phantom]
  533. autocmd Filetype tex inoremap <localleader>q \qquad
  534. autocmd Filetype tex inoremap <localleader>r \rightarrow
  535. autocmd Filetype tex inoremap <localleader>R \Rightarrow
  536. " autocmd Filetype tex inoremap <localleader>s \subset
  537. autocmd Filetype tex inoremap <localleader>s \text{s}
  538. autocmd Filetype tex inoremap <localleader>st such that
  539. autocmd Filetype tex inoremap <localleader>S \Sigma
  540. autocmd Filetype tex inoremap <localleader>t \times
  541. " autocmd Filetype tex inoremap <localleader>T $T$
  542. autocmd Filetype tex inoremap <localleader>T \Theta
  543. " replace bars/underscores in URL
  544. autocmd Filetype tex inoremap <localleader>url :.s/\([-_]\)/\\\1/g<CR>
  545. autocmd Filetype tex inoremap <localleader>v \vee
  546. autocmd Filetype tex inoremap <localleader>w \wedge
  547. autocmd Filetype tex inoremap <localleader>x $x$-axis
  548. autocmd Filetype tex inoremap <localleader>y $y$-axis
  549. autocmd Filetype tex inoremap <localleader>Z \mathbb{Z}
  550. " par3
  551. autocmd Filetype tex inoremap <localleader>wx $w(x)$
  552. autocmd Filetype tex inoremap <localleader>tx $t(x)$
  553. " ]]] tex "
  554. autocmd Filetype c inoremap <localleader>uc unsigned char
  555. autocmd BufNewFile,BufRead *.h nnoremap <localleader>x 0iextern <Esc>f{hc$;<Esc>
  556. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>d Gy3kGp5e<C-V>3j<C-a>$rnj.j.j$.
  557. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>n $rn
  558. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>y $ry
  559. autocmd Filetype fish inoremap <localleader>1 $argv[1]
  560. autocmd Filetype fish inoremap <localleader>2 $argv[2]
  561. autocmd Filetype javascript inoremap <localleader>x process.exit()
  562. autocmd Filetype markdown inoremap <localleader>c - [ ]
  563. autocmd Filetype markdown nnoremap <localleader>e 0f[lr<Space>
  564. autocmd Filetype markdown inoremap <localleader>t TODO:
  565. autocmd Filetype markdown vnoremap <localleader>r q:is/\[x/[ /g<Esc><CR>:set nohlsearch<CR>
  566. autocmd Filetype markdown vnoremap <localleader>x q:is/\[ /[x/g<Esc><CR>:set nohlsearch<CR>
  567. autocmd Filetype markdown nnoremap <localleader>x 0f[lrx
  568. " nnoremap <localleader>x 0f[lrx
  569. autocmd Filetype go nnoremap <localleader>f :GoTestFunc<CR>
  570. autocmd Filetype go nnoremap <localleader>l :GoLint<CR>
  571. autocmd Filetype go nnoremap <localleader>m :GoTests<CR>
  572. autocmd Filetype go nnoremap <localleader>r yawq:iGoRename <Esc>p
  573. autocmd Filetype go nnoremap <localleader>t :GoTest<CR>
  574. autocmd Filetype go-template inoremap <localleader>e {{"{{ else }}"}}
  575. autocmd Filetype go-template inoremap <localleader>hd {{"{{ .chezmoi.homeDir }}"}}
  576. autocmd Filetype go-template nnoremap <localleader>fp :%s/{{"{{{"}}/[[[/g<CR>:%s/}}}/]]]/g<CR>
  577. autocmd Filetype Jenkinsfile nnoremap <localleader>q :.s/"/'/g<CR>
  578. autocmd Filetype Jenkinsfile vnoremap <localleader>q :s/"/'/g<CR>
  579. autocmd Filetype python inoremap <localleader>bp breakpoint()
  580. autocmd Filetype python inoremap <localleader>ip from pprint import pprint
  581. autocmd Filetype python inoremap <localleader>s self.
  582. " ]]] Local Mappings "
  583. " vim: fdm=marker ft=vim.go-template