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.

655 lines
21 KiB

5 years ago
6 years ago
6 years ago
6 years ago
6 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
6 years ago
6 years ago
5 years ago
7 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years 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
2 years ago
4 years ago
5 years ago
6 years ago
5 years ago
4 years ago
6 years ago
5 years ago
2 years ago
6 years ago
2 years ago
5 years ago
5 years ago
2 years ago
5 years ago
6 years ago
2 years ago
6 years ago
2 years 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. Plug 'Valloric/YouCompleteMe'
  177. let g:ycm_filetype_blacklist = {
  178. \ 'tagbar': 1,
  179. \ 'qf': 1,
  180. \ 'notes': 1,
  181. \ 'unite': 1,
  182. \ 'vimwiki': 1,
  183. \ 'pandoc': 1,
  184. \ 'infolog': 1,
  185. \ 'mail': 1
  186. \}
  187. {{ end }}
  188. " wrote short bits of text that expand into whatever you want
  189. " demo: https://www.youtube.com/watch?v=Zik6u0klD40
  190. Plug 'SirVer/ultisnips'
  191. " better key bindings for UltiSnipsExpandTrigger
  192. let g:UltiSnipsExpandTrigger = "<tab>"
  193. let g:UltiSnipsJumpForwardTrigger = "<tab>"
  194. let g:UltiSnipsJumpBackwardTrigger = "<C-tab>"
  195. let g:ultisnips_javascript = {
  196. \ 'keyword-spacing': 'always',
  197. \ 'semi': 'never',
  198. \ 'space-before-function-paren': 'never',
  199. \ }
  200. " custom snippets
  201. Plug 'Kevin-Mok/vim-snippets'
  202. " to make YouCompleteMe work with UltiSnips (both use Tab)
  203. Plug 'ervandew/supertab'
  204. " make YCM compatible with UltiSnips (using supertab)
  205. let g:ycm_key_list_select_completion = ['<C-n>', '<Down>']
  206. let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>']
  207. let g:SuperTabDefaultCompletionType = '<C-n>'
  208. " easily comment/uncomment lines
  209. Plug 'scrooloose/nerdcommenter'
  210. let g:NERDTrimTrailingWhitespace = 1
  211. let g:NERDSpaceDelims = 1
  212. " add quotes/brackets around chunks of text easily
  213. Plug 'tpope/vim-surround'
  214. nmap S ys
  215. " navigate around file easily and precisely
  216. Plug 'easymotion/vim-easymotion'
  217. map <Space> <Plug>(easymotion-prefix)
  218. " status bar displaying various info about the current buffer
  219. Plug 'vim-airline/vim-airline'
  220. let g:airline_section_c = '%F'
  221. Plug 'vim-airline/vim-airline-themes'
  222. let g:airline_powerline_fonts = 1
  223. " continue Markdown lists when started
  224. Plug 'dkarter/bullets.vim'
  225. " coordinate Vim color scheme with terminal color scheme
  226. Plug 'dylanaraps/wal.vim'
  227. " repeat plugin commands
  228. Plug 'tpope/vim-repeat'
  229. " better Django support
  230. Plug 'tweekmonster/django-plus.vim'
  231. " auto-close brackets
  232. Plug 'jiangmiao/auto-pairs'
  233. let g:AutoPairsMapSpace = 0
  234. Plug 'henrik/vim-indexed-search'
  235. Plug 'PotatoesMaster/i3-vim-syntax'
  236. " vim file explorer
  237. Plug 'terryma/vim-multiple-cursors'
  238. " let g:multi_cursor_select_all_word_key='<C-a>'
  239. let g:multi_cursor_exit_from_visual_mode=0
  240. let g:multi_cursor_exit_from_insert_mode=0
  241. Plug 'dag/vim-fish'
  242. " live preview Markdown"
  243. Plug 'suan/vim-instant-markdown', {'for': 'markdown'}
  244. let g:instant_markdown_autostart = 0
  245. let g:instant_markdown_port = 8888
  246. " Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
  247. " let g:mkdp_auto_start = 1
  248. " let g:mkdp_browser = 'firefox'
  249. " let g:mkdp_echo_preview_url = 1
  250. " git helper
  251. Plug 'tpope/vim-fugitive'
  252. " auto reload file
  253. Plug 'djoshea/vim-autoread'
  254. " Plug 'mustache/vim-mustache-handlebars'
  255. " Plug 'trapd00r/vim-syntax-vidir-ls'
  256. Plug 'calviken/vim-gdscript3'
  257. " display hex colors in Vim
  258. " Plug 'RRethy/vim-hexokinase'
  259. Plug 'junegunn/goyo.vim'
  260. " prevent commands being executed through modelines "
  261. Plug 'ciaranm/securemodelines/'
  262. " different colors for each layer of surrounding brackets
  263. Plug 'luochen1990/rainbow'
  264. let g:rainbow_active = 1
  265. " easy custom text objects
  266. Plug 'kana/vim-textobj-user'
  267. " latex custom text objects
  268. Plug 'rbonvall/vim-textobj-latex'
  269. " swap words
  270. Plug 'tommcdo/vim-exchange'
  271. " Plug 'scrooloose/nerdtree'
  272. " let NERDTreeQuitOnOpen=1
  273. " let NERDTreeShowHidden=1
  274. " Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  275. " Plug 'junegunn/fzf.vim'
  276. Plug 'christoomey/vim-tmux-navigator'
  277. " mappings [[[ "
  278. let g:tmux_navigator_no_mappings = 1
  279. nnoremap <A-j> :TmuxNavigateDown<cr>
  280. nnoremap <A-k> :TmuxNavigateUp<cr>
  281. nnoremap <A-h> :TmuxNavigateLeft<cr>
  282. nnoremap <A-l> :TmuxNavigateRight<cr>
  283. " nnoremap <C-Down> :TmuxNavigateDown<cr>
  284. " nnoremap <C-Up> :TmuxNavigateUp<cr>
  285. " nnoremap <C-Left> :TmuxNavigateLeft<cr>
  286. " nnoremap <C-Right> :TmuxNavigateRight<cr>
  287. " ]]] mappings "
  288. " highlight multiple words
  289. " TODO: mapping conflicts "
  290. " Plug 'inkarkat/vim-mark'
  291. " Plug 'jceb/vim-orgmode'
  292. " let g:org_todo_keywords=['TODO', 'STARTED', '|', 'DONE']
  293. Plug 'junegunn/vim-easy-align'
  294. " Start interactive EasyAlign in visual mode (e.g. vipga)
  295. xmap ga <Plug>(EasyAlign)
  296. " Start interactive EasyAlign for a motion/text object (e.g. gaip)
  297. nmap ga <Plug>(EasyAlign)
  298. Plug 'wlangstroth/vim-racket'
  299. Plug 'neovimhaskell/haskell-vim'
  300. Plug 'masukomi/vim-markdown-folding'
  301. autocmd FileType markdown set foldexpr=NestedMarkdownFolds()
  302. Plug 'cespare/vim-toml'
  303. Plug 'dpelle/vim-LanguageTool'
  304. " increment dates with C-a
  305. Plug 'tpope/vim-speeddating'
  306. Plug 'martinda/Jenkinsfile-vim-syntax'
  307. Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
  308. let g:go_fmt_command = ""
  309. Plug 'buoto/gotests-vim'
  310. Plug 'tomlion/vim-solidity'
  311. Plug 'jparise/vim-graphql'
  312. Plug 'maxmellon/vim-jsx-pretty'
  313. Plug 'mlaursen/vim-react-snippets', { 'branch': 'main' }
  314. Plug 'cristianoliveira/vim-react-html-snippets'
  315. Plug 'jidn/vim-dbml'
  316. " ]]] vim-plug "
  317. " Mappings [[[ "
  318. call plug#end()
  319. {{ if .gui }}
  320. colorscheme wal
  321. {{ else }}
  322. colorscheme gotham256
  323. {{ end }}
  324. " normal mappings [[[ "
  325. nnoremap <ScrollWheelUp> <C-U>
  326. nnoremap <ScrollWheelDown> <C-D>
  327. nnoremap Y yy
  328. " visual select across lines by default "
  329. nnoremap v <C-V>
  330. " last macro "
  331. nnoremap Q @@
  332. " toggle fold "
  333. nnoremap , za
  334. " jump to horizontal position for mark "
  335. nnoremap ' `
  336. " indenting
  337. nnoremap > >>
  338. nnoremap < <<
  339. inoremap << <Esc><<A
  340. " ]]] normal mappings "
  341. " leader mappings [[[ "
  342. let mapleader="\<Space>"
  343. " find alias
  344. nnoremap <leader>a /^ <Left>
  345. nnoremap <leader>ac :.s/\(\w\w\)/\u\1\U\2/g<CR>
  346. " replace until end of line
  347. nnoremap <leader>c c$
  348. " delete until end of line
  349. nnoremap <leader>d d$
  350. " delete entire buffer
  351. nnoremap <leader>dg ggdG
  352. " delete entire line
  353. nnoremap <leader>dl 0d$
  354. " delete lines matching pattern
  355. " nnoremap <leader>dls :g//d<left><left>
  356. nnoremap <leader>dls q:ig//d<left><left>
  357. " show docstring for cur word
  358. nnoremap <leader>do :YcmCompleter GetDoc<CR>
  359. " delete line into system clipboard
  360. nnoremap <leader>D "+dd
  361. " delete entire buffer into system clipboard
  362. nnoremap <leader>DA "+ggdG
  363. " find copied text
  364. nnoremap <leader>f q/p<CR>
  365. " find merge conflicts
  366. nnoremap <leader>fc /[<>=\|]\{7\}<CR>
  367. " reload folds
  368. nnoremap <leader>fmi :set foldmethod=indent<CR> zM
  369. nnoremap <leader>fmm :set foldmethod=marker<CR> zM
  370. " add marker foldmethod modeline
  371. nnoremap <leader>fi :YcmCompleter FixIt<CR>
  372. " check filetype
  373. nnoremap <leader>ft :se ft?<CR>
  374. " check todo's
  375. nnoremap <leader>ftd /TODO<CR>
  376. " nnoremap <leader>g :YcmCompleter GoTo<CR>
  377. nnoremap <leader>g :vs \| YcmCompleter GoTo<CR>
  378. " nnoremap <leader>gb <C-O>
  379. nnoremap <leader>gb :Git blame<CR>
  380. " vimdiff split
  381. nnoremap <leader>gd :Gvdiff
  382. nnoremap <leader>gdh :Gvdiff HEAD^
  383. nnoremap <leader>gdm :Gvdiff master<CR>
  384. nnoremap <leader>gdo :Gvdiff orig/master<CR>
  385. " toggle search highlighting
  386. nnoremap <leader>h :set hlsearch! hlsearch?<CR>
  387. " help
  388. nnoremap <leader>he :vert help
  389. nnoremap <leader>ht :set tabstop=2 shiftwidth=2 expandtab<CR>
  390. nnoremap <leader>vhe :vert help
  391. " don't add space when joining lines "
  392. " nnoremap <leader>j gJ
  393. " jump forward
  394. nnoremap <leader>j <C-I>
  395. " join all paragraphs into single line "
  396. nnoremap <leader>jl :set tw=9999999<CR>gggqG
  397. " jump back
  398. nnoremap <leader>k <C-O>
  399. " format current line
  400. nnoremap <leader>l Vgq
  401. " format this and next line
  402. nnoremap <leader>ll Vjgq
  403. " move cursor to middle of line
  404. " nnoremap <leader>m :call cursor(0, len(getline('.'))/2)<CR>
  405. nnoremap <leader>m :vert Man
  406. " apply normal command to selection
  407. vnoremap <leader>n q:anorm
  408. " turn off autoformat"
  409. nnoremap <leader>na :set spell spelllang=en_us formatoptions=cjMqtvw<CR>
  410. nnoremap <leader>nt :NERDTree<CR>
  411. " check if in neovim
  412. nnoremap <leader>nv :echo has('nvim')<CR>
  413. " don't wrap lines
  414. nnoremap <leader>nw :set nowrap<CR>
  415. " recursively open fold
  416. nnoremap <leader>o zO
  417. " paste from?
  418. " nnoremap <leader>p "*p
  419. " format paragraph
  420. nnoremap <leader>p gqip
  421. " Plug commands
  422. nnoremap <leader>pli :PlugInstall<CR>
  423. nnoremap <leader>plc :PlugClean<CR>
  424. nnoremap <leader>plu :PlugUpdate<CR>
  425. " don't break lines
  426. nnoremap <leader>py :set tw=0<CR>
  427. " replace in next x lines
  428. " nnoremap <leader>r q:i.,.+s///g<ESC>Fsi
  429. " replace in line
  430. nnoremap <leader>r q:i.s///g<left><left><left>
  431. " replace in visual selection
  432. vnoremap <leader>r q:is///g<ESC>3ha
  433. " replace in entire file
  434. " nnoremap <leader>R q:i%s///g<ESC>2F/i
  435. nnoremap <leader>ra q:i%s///g<ESC>2F/i
  436. " remove italics tags
  437. nnoremap <leader>rmi :%s/<\/\?i>//g<CR>
  438. nnoremap <leader>rn :YcmCompleter RefactorRename
  439. nnoremap <leader>rs :res
  440. " reload vim config
  441. nnoremap <leader>rv :source $MYVIMRC<CR>
  442. vnoremap <leader>s :sort<CR>
  443. nnoremap <leader>sc :set spell spelllang=en_us<CR>
  444. " run current file in shell
  445. nnoremap <leader>sh :!%:p
  446. " sort lines until end of file
  447. nnoremap <leader>so q:i.,$sort<CR>
  448. " vertical split "
  449. nnoremap <leader>sp :sp
  450. " sort lines
  451. nnoremap <leader>sol q:i.,.+sort<ESC>Fsi
  452. " set syntax to shell (for dotfiles)
  453. nnoremap <leader>sys :set syn=sh<CR>
  454. vnoremap <leader>t :!tac<CR>
  455. " capitalize letter
  456. nnoremap <leader>u vU
  457. " comment visual block
  458. " nnoremap <leader>vcc V<leader>cc
  459. " uncomment visual block
  460. " nnoremap <leader>vcu V<leader>cu
  461. " horizontal split "
  462. nnoremap <leader>vs :vs
  463. " open vimrc in vertical split
  464. nnoremap <leader>vv :vsp ~/.vimrc<CR>
  465. " copy next thing to system clipboard
  466. " nnoremap <leader>y "+
  467. " nnoremap <leader>Y "+Y
  468. nnoremap <leader>y y$
  469. nnoremap <leader>yo :Goyo<CR>
  470. " yank entire buffer
  471. nnoremap <leader>yg ggyG
  472. " toggle fold
  473. nnoremap <leader>z za
  474. " close all folds
  475. nnoremap <leader>zm zM
  476. " open all folds
  477. nnoremap <leader>zr zR
  478. " ]]] leader mappings "
  479. " function keys [[[ "
  480. map <F3> :wa<CR>
  481. map <F4> :xa<CR>
  482. map <F5> :q!<CR>
  483. map <F6> :qa!<CR>
  484. map <F7> :AutoSaveToggle<CR>
  485. " reload file
  486. nnoremap <F9> :e<CR>
  487. nnoremap <F10> :set paste<CR>"+p:set nopaste<CR>
  488. nnoremap <F11> :set paste<CR>"*p:set nopaste<CR>
  489. " ]]] function keys "
  490. map <S-Enter> O<ESC>
  491. " swap text visually
  492. vnoremap <C-P> <Esc>`.``gvP``P
  493. ino <C-A> <C-O>yiW<End>=<C-R>=<C-R>0<CR>
  494. " splits [[[ "
  495. nnoremap <C-Down> <C-W><C-J>
  496. nnoremap <C-Up> <C-W><C-K>
  497. nnoremap <C-Right> <C-W><C-L>
  498. nnoremap <C-Left> <C-W><C-H>
  499. " Maximize height/width.
  500. nnoremap <C-g> <C-W>_
  501. nnoremap <C-w> <C-W>|
  502. " ]]] splits "
  503. " ]]] Mappings "
  504. " Local Mappings [[[ "
  505. let maplocalleader="\\"
  506. " tex [[[ "
  507. autocmd Filetype tex noremap i$ :<C-u>normal! T$vt$<CR>
  508. autocmd Filetype tex noremap i$ :normal vi$<CR>
  509. autocmd Filetype tex xnoremap a$ :<C-u> normal!F$vf$<CR>
  510. autocmd Filetype tex onoremap a$ :normal va$<CR>
  511. autocmd Filetype tex inoremap <localleader>bt \bowtie
  512. autocmd Filetype tex inoremap <localleader>c \checkmark
  513. autocmd Filetype tex inoremap <localleader>d \div
  514. autocmd Filetype tex inoremap <localleader>D \Delta
  515. autocmd Filetype tex inoremap <localleader>e \exists
  516. autocmd Filetype tex inoremap <localleader>ep \epsilon
  517. autocmd Filetype tex inoremap <localleader>fa \forall
  518. autocmd Filetype tex inoremap <localleader>g \geq
  519. autocmd Filetype tex inoremap <localleader>i \in
  520. autocmd Filetype tex inoremap <localleader>la \leftarrow
  521. autocmd Filetype tex inoremap <localleader>le \leq
  522. autocmd Filetype tex inoremap <localleader>ln \log n
  523. autocmd Filetype tex inoremap <localleader>lr \Leftrightarrow
  524. autocmd Filetype tex inoremap <localleader>m \mu
  525. " autocmd Filetype tex inoremap <localleader>n \neg
  526. autocmd Filetype tex inoremap <localleader>n \neq
  527. autocmd Filetype tex inoremap <localleader>N \mathbb{N}
  528. autocmd Filetype tex inoremap <localleader>pg \pagebreak<Enter>
  529. autocmd Filetype tex inoremap <localleader>ph [,phantom]
  530. autocmd Filetype tex inoremap <localleader>q \qquad
  531. autocmd Filetype tex inoremap <localleader>r \rightarrow
  532. autocmd Filetype tex inoremap <localleader>R \Rightarrow
  533. " autocmd Filetype tex inoremap <localleader>s \subset
  534. autocmd Filetype tex inoremap <localleader>s \text{s}
  535. autocmd Filetype tex inoremap <localleader>st such that
  536. autocmd Filetype tex inoremap <localleader>S \Sigma
  537. autocmd Filetype tex inoremap <localleader>t \times
  538. " autocmd Filetype tex inoremap <localleader>T $T$
  539. autocmd Filetype tex inoremap <localleader>T \Theta
  540. " replace bars/underscores in URL
  541. autocmd Filetype tex inoremap <localleader>url :.s/\([-_]\)/\\\1/g<CR>
  542. autocmd Filetype tex inoremap <localleader>v \vee
  543. autocmd Filetype tex inoremap <localleader>w \wedge
  544. autocmd Filetype tex inoremap <localleader>x $x$-axis
  545. autocmd Filetype tex inoremap <localleader>y $y$-axis
  546. autocmd Filetype tex inoremap <localleader>Z \mathbb{Z}
  547. " par3
  548. autocmd Filetype tex inoremap <localleader>wx $w(x)$
  549. autocmd Filetype tex inoremap <localleader>tx $t(x)$
  550. " ]]] tex "
  551. autocmd Filetype c inoremap <localleader>uc unsigned char
  552. autocmd BufNewFile,BufRead *.h nnoremap <localleader>x 0iextern <Esc>f{hc$;<Esc>
  553. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>d Gy3kGp5e<C-V>3j<C-a>$rnj.j.j$.
  554. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>n $rn
  555. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>y $ry
  556. autocmd Filetype fish inoremap <localleader>1 $argv[1]
  557. autocmd Filetype fish inoremap <localleader>2 $argv[2]
  558. autocmd Filetype javascript inoremap <localleader>x process.exit()
  559. autocmd Filetype markdown inoremap <localleader>c - [ ]
  560. autocmd Filetype markdown nnoremap <localleader>e 0f[lr<Space>
  561. autocmd Filetype markdown inoremap <localleader>t TODO:
  562. autocmd Filetype markdown vnoremap <localleader>r q:is/\[x/[ /g<Esc><CR>:set nohlsearch<CR>
  563. autocmd Filetype markdown vnoremap <localleader>x q:is/\[ /[x/g<Esc><CR>:set nohlsearch<CR>
  564. autocmd Filetype markdown nnoremap <localleader>x 0f[lrx
  565. " nnoremap <localleader>x 0f[lrx
  566. autocmd Filetype go nnoremap <localleader>f :GoTestFunc<CR>
  567. autocmd Filetype go nnoremap <localleader>l :GoLint<CR>
  568. autocmd Filetype go nnoremap <localleader>m :GoTests<CR>
  569. autocmd Filetype go nnoremap <localleader>r yawq:iGoRename <Esc>p
  570. autocmd Filetype go nnoremap <localleader>t :GoTest<CR>
  571. autocmd Filetype go-template inoremap <localleader>e {{"{{ else }}"}}
  572. autocmd Filetype go-template inoremap <localleader>hd {{"{{ .chezmoi.homeDir }}"}}
  573. autocmd Filetype go-template nnoremap <localleader>fp :%s/{{"{{{"}}/[[[/g<CR>:%s/}}}/]]]/g<CR>
  574. autocmd Filetype Jenkinsfile nnoremap <localleader>q :.s/"/'/g<CR>
  575. autocmd Filetype Jenkinsfile vnoremap <localleader>q :s/"/'/g<CR>
  576. autocmd Filetype python inoremap <localleader>bp breakpoint()
  577. autocmd Filetype python inoremap <localleader>ip from pprint import pprint
  578. autocmd Filetype python inoremap <localleader>s self.
  579. " ]]] Local Mappings "
  580. " vim: fdm=marker ft=vim.go-template