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.

659 lines
21 KiB

5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
4 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
7 years ago
5 years ago
8 months ago
6 years ago
6 years ago
8 months ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
12 months ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
2 years ago
5 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 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
5 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. " Plug 'FuDesign2008/emoji-snippets.vim'
  320. " ]]] vim-plug "
  321. " Mappings [[[ "
  322. call plug#end()
  323. {{ if .gui }}
  324. colorscheme wal
  325. {{ else }}
  326. colorscheme gotham256
  327. {{ end }}
  328. " normal mappings [[[ "
  329. nnoremap <ScrollWheelUp> <C-U>
  330. nnoremap <ScrollWheelDown> <C-D>
  331. nnoremap Y yy
  332. " visual select across lines by default "
  333. nnoremap v <C-V>
  334. " last macro "
  335. nnoremap Q @@
  336. " toggle fold "
  337. nnoremap , za
  338. " jump to horizontal position for mark "
  339. nnoremap ' `
  340. " indenting
  341. nnoremap > >>
  342. nnoremap < <<
  343. inoremap << <Esc><<A
  344. " ]]] normal mappings "
  345. " leader mappings [[[ "
  346. let mapleader="\<Space>"
  347. " find alias
  348. nnoremap <leader>a /^ <Left>
  349. nnoremap <leader>ac :.s/\(\w\w\)/\u\1\U\2/g<CR>
  350. " replace until end of line
  351. nnoremap <leader>c c$
  352. " delete until end of line
  353. nnoremap <leader>d d$
  354. " delete entire buffer
  355. nnoremap <leader>dg ggdG
  356. " delete entire line
  357. nnoremap <leader>dl 0d$
  358. " delete lines matching pattern
  359. " nnoremap <leader>dls :g//d<left><left>
  360. nnoremap <leader>dls q:ig//d<left><left>
  361. " show docstring for cur word
  362. nnoremap <leader>do :YcmCompleter GetDoc<CR>
  363. " delete line into system clipboard
  364. nnoremap <leader>D "+dd
  365. " delete entire buffer into system clipboard
  366. nnoremap <leader>DA "+ggdG
  367. " find copied text
  368. nnoremap <leader>f q/p<CR>
  369. " find merge conflicts
  370. nnoremap <leader>fc /[<>=\|]\{7\}<CR>
  371. " reload folds
  372. nnoremap <leader>fmi :set foldmethod=indent<CR> zM
  373. nnoremap <leader>fmm :set foldmethod=marker<CR> zM
  374. " add marker foldmethod modeline
  375. nnoremap <leader>fi :YcmCompleter FixIt<CR>
  376. " check filetype
  377. nnoremap <leader>ft :se ft?<CR>
  378. " check todo's
  379. nnoremap <leader>ftd /TODO<CR>
  380. " nnoremap <leader>g :YcmCompleter GoTo<CR>
  381. nnoremap <leader>g :vs \| YcmCompleter GoTo<CR>
  382. " nnoremap <leader>gb <C-O>
  383. nnoremap <leader>gb :Git blame<CR>
  384. " vimdiff split
  385. nnoremap <leader>gd :Gvdiff
  386. nnoremap <leader>gdh :Gvdiff HEAD^
  387. nnoremap <leader>gdm :Gvdiff master<CR>
  388. nnoremap <leader>gdo :Gvdiff orig/master<CR>
  389. " toggle search highlighting
  390. nnoremap <leader>h :set hlsearch! hlsearch?<CR>
  391. " help
  392. nnoremap <leader>he :vert help
  393. nnoremap <leader>ht :set tabstop=2 shiftwidth=2 expandtab<CR>
  394. nnoremap <leader>vhe :vert help
  395. " don't add space when joining lines "
  396. " nnoremap <leader>j gJ
  397. " jump forward
  398. nnoremap <leader>j <C-I>
  399. " join all paragraphs into single line "
  400. nnoremap <leader>jl :set tw=9999999<CR>gggqG
  401. " jump back
  402. nnoremap <leader>k <C-O>
  403. " format current line
  404. nnoremap <leader>l Vgq
  405. " format this and next line
  406. nnoremap <leader>ll Vjgq
  407. " move cursor to middle of line
  408. " nnoremap <leader>m :call cursor(0, len(getline('.'))/2)<CR>
  409. nnoremap <leader>m :vert Man
  410. " apply normal command to selection
  411. vnoremap <leader>n q:anorm
  412. " turn off autoformat"
  413. nnoremap <leader>na :set spell spelllang=en_us formatoptions=cjMqtvw<CR>
  414. nnoremap <leader>nt :NERDTree<CR>
  415. " check if in neovim
  416. nnoremap <leader>nv :echo has('nvim')<CR>
  417. " don't wrap lines
  418. nnoremap <leader>nw :set nowrap<CR>
  419. " recursively open fold
  420. nnoremap <leader>o zO
  421. " paste from?
  422. " nnoremap <leader>p "*p
  423. " format paragraph
  424. nnoremap <leader>p gqip
  425. " Plug commands
  426. nnoremap <leader>pli :PlugInstall<CR>
  427. nnoremap <leader>plc :PlugClean<CR>
  428. nnoremap <leader>plu :PlugUpdate<CR>
  429. " don't break lines
  430. nnoremap <leader>py :set tw=0<CR>
  431. " replace in next x lines
  432. " nnoremap <leader>r q:i.,.+s///g<ESC>Fsi
  433. " replace in line
  434. nnoremap <leader>r q:i.s///g<left><left><left>
  435. " replace in visual selection
  436. vnoremap <leader>r q:is///g<ESC>3ha
  437. " replace in entire file
  438. " nnoremap <leader>R q:i%s///g<ESC>2F/i
  439. nnoremap <leader>ra q:i%s///g<ESC>2F/i
  440. " remove italics tags
  441. nnoremap <leader>rmi :%s/<\/\?i>//g<CR>
  442. nnoremap <leader>rn :YcmCompleter RefactorRename
  443. nnoremap <leader>rs :res
  444. " reload vim config
  445. nnoremap <leader>rv :source $MYVIMRC<CR>
  446. vnoremap <leader>s :sort<CR>
  447. nnoremap <leader>sc :set spell spelllang=en_us<CR>
  448. " run current file in shell
  449. nnoremap <leader>sh :!%:p
  450. " sort lines until end of file
  451. nnoremap <leader>so q:i.,$sort<CR>
  452. " vertical split "
  453. nnoremap <leader>sp :sp
  454. " sort lines
  455. nnoremap <leader>sol q:i.,.+sort<ESC>Fsi
  456. " set syntax to shell (for dotfiles)
  457. nnoremap <leader>sys :set syn=sh<CR>
  458. vnoremap <leader>t :!tac<CR>
  459. " capitalize letter
  460. nnoremap <leader>u vU
  461. " comment visual block
  462. " nnoremap <leader>vcc V<leader>cc
  463. " uncomment visual block
  464. " nnoremap <leader>vcu V<leader>cu
  465. " horizontal split "
  466. nnoremap <leader>vs :vs
  467. " open vimrc in vertical split
  468. nnoremap <leader>vv :vsp ~/.vimrc<CR>
  469. " copy next thing to system clipboard
  470. " nnoremap <leader>y "+
  471. " nnoremap <leader>Y "+Y
  472. nnoremap <leader>y y$
  473. nnoremap <leader>yo :Goyo<CR>
  474. " yank entire buffer
  475. nnoremap <leader>yg ggyG
  476. " toggle fold
  477. nnoremap <leader>z za
  478. " close all folds
  479. nnoremap <leader>zm zM
  480. " open all folds
  481. nnoremap <leader>zr zR
  482. " ]]] leader mappings "
  483. " function keys [[[ "
  484. map <F3> :wa<CR>
  485. map <F4> :xa<CR>
  486. map <F5> :q!<CR>
  487. map <F6> :qa!<CR>
  488. map <F7> :AutoSaveToggle<CR>
  489. " reload file
  490. nnoremap <F9> :e<CR>
  491. nnoremap <F10> :set paste<CR>"+p:set nopaste<CR>
  492. nnoremap <F11> :set paste<CR>"*p:set nopaste<CR>
  493. " ]]] function keys "
  494. map <S-Enter> O<ESC>
  495. " swap text visually
  496. vnoremap <C-P> <Esc>`.``gvP``P
  497. ino <C-A> <C-O>yiW<End>=<C-R>=<C-R>0<CR>
  498. " splits [[[ "
  499. nnoremap <C-Down> <C-W><C-J>
  500. nnoremap <C-Up> <C-W><C-K>
  501. nnoremap <C-Right> <C-W><C-L>
  502. nnoremap <C-Left> <C-W><C-H>
  503. " Maximize height/width.
  504. nnoremap <C-g> <C-W>_
  505. nnoremap <C-w> <C-W>|
  506. " ]]] splits "
  507. " ]]] Mappings "
  508. " Local Mappings [[[ "
  509. let maplocalleader="\\"
  510. " tex [[[ "
  511. autocmd Filetype tex noremap i$ :<C-u>normal! T$vt$<CR>
  512. autocmd Filetype tex noremap i$ :normal vi$<CR>
  513. autocmd Filetype tex xnoremap a$ :<C-u> normal!F$vf$<CR>
  514. autocmd Filetype tex onoremap a$ :normal va$<CR>
  515. autocmd Filetype tex inoremap <localleader>bt \bowtie
  516. autocmd Filetype tex inoremap <localleader>c \checkmark
  517. autocmd Filetype tex inoremap <localleader>d \div
  518. autocmd Filetype tex inoremap <localleader>D \Delta
  519. autocmd Filetype tex inoremap <localleader>e \exists
  520. autocmd Filetype tex inoremap <localleader>ep \epsilon
  521. autocmd Filetype tex inoremap <localleader>fa \forall
  522. autocmd Filetype tex inoremap <localleader>g \geq
  523. autocmd Filetype tex inoremap <localleader>i \in
  524. autocmd Filetype tex inoremap <localleader>la \leftarrow
  525. autocmd Filetype tex inoremap <localleader>le \leq
  526. autocmd Filetype tex inoremap <localleader>ln \log n
  527. autocmd Filetype tex inoremap <localleader>lr \Leftrightarrow
  528. autocmd Filetype tex inoremap <localleader>m \mu
  529. " autocmd Filetype tex inoremap <localleader>n \neg
  530. autocmd Filetype tex inoremap <localleader>n \neq
  531. autocmd Filetype tex inoremap <localleader>N \mathbb{N}
  532. autocmd Filetype tex inoremap <localleader>pg \pagebreak<Enter>
  533. autocmd Filetype tex inoremap <localleader>ph [,phantom]
  534. autocmd Filetype tex inoremap <localleader>q \qquad
  535. autocmd Filetype tex inoremap <localleader>r \rightarrow
  536. autocmd Filetype tex inoremap <localleader>R \Rightarrow
  537. " autocmd Filetype tex inoremap <localleader>s \subset
  538. autocmd Filetype tex inoremap <localleader>s \text{s}
  539. autocmd Filetype tex inoremap <localleader>st such that
  540. autocmd Filetype tex inoremap <localleader>S \Sigma
  541. autocmd Filetype tex inoremap <localleader>t \times
  542. " autocmd Filetype tex inoremap <localleader>T $T$
  543. autocmd Filetype tex inoremap <localleader>T \Theta
  544. " replace bars/underscores in URL
  545. autocmd Filetype tex inoremap <localleader>url :.s/\([-_]\)/\\\1/g<CR>
  546. autocmd Filetype tex inoremap <localleader>v \vee
  547. autocmd Filetype tex inoremap <localleader>w \wedge
  548. autocmd Filetype tex inoremap <localleader>x $x$-axis
  549. autocmd Filetype tex inoremap <localleader>y $y$-axis
  550. autocmd Filetype tex inoremap <localleader>Z \mathbb{Z}
  551. " par3
  552. autocmd Filetype tex inoremap <localleader>wx $w(x)$
  553. autocmd Filetype tex inoremap <localleader>tx $t(x)$
  554. " ]]] tex "
  555. autocmd Filetype c inoremap <localleader>uc unsigned char
  556. autocmd BufNewFile,BufRead *.h nnoremap <localleader>x 0iextern <Esc>f{hc$;<Esc>
  557. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>d Gy3kGp5e<C-V>3j<C-a>$rnj.j.j$.
  558. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>n $rn
  559. autocmd BufNewFile,BufRead ~/.habitctl/log nnoremap <localleader>y $ry
  560. autocmd Filetype fish inoremap <localleader>1 $argv[1]
  561. autocmd Filetype fish inoremap <localleader>2 $argv[2]
  562. autocmd Filetype javascript inoremap <localleader>x process.exit()
  563. autocmd Filetype markdown inoremap <localleader>c - [ ]
  564. autocmd Filetype markdown nnoremap <localleader>e 0f[lr<Space>
  565. autocmd Filetype markdown inoremap <localleader>t TODO:
  566. autocmd Filetype markdown vnoremap <localleader>r q:is/\[x/[ /g<Esc><CR>:set nohlsearch<CR>
  567. autocmd Filetype markdown vnoremap <localleader>x q:is/\[ /[x/g<Esc><CR>:set nohlsearch<CR>
  568. autocmd Filetype markdown nnoremap <localleader>x 0f[lrx
  569. " nnoremap <localleader>x 0f[lrx
  570. autocmd Filetype go nnoremap <localleader>f :GoTestFunc<CR>
  571. autocmd Filetype go nnoremap <localleader>l :GoLint<CR>
  572. autocmd Filetype go nnoremap <localleader>m :GoTests<CR>
  573. autocmd Filetype go nnoremap <localleader>r yawq:iGoRename <Esc>p
  574. autocmd Filetype go nnoremap <localleader>t :GoTest<CR>
  575. autocmd Filetype go-template inoremap <localleader>e {{"{{ else }}"}}
  576. autocmd Filetype go-template inoremap <localleader>hd {{"{{ .chezmoi.homeDir }}"}}
  577. autocmd Filetype go-template nnoremap <localleader>fp :%s/{{"{{{"}}/[[[/g<CR>:%s/}}}/]]]/g<CR>
  578. autocmd Filetype Jenkinsfile nnoremap <localleader>q :.s/"/'/g<CR>
  579. autocmd Filetype Jenkinsfile vnoremap <localleader>q :s/"/'/g<CR>
  580. autocmd Filetype python inoremap <localleader>bp breakpoint()
  581. autocmd Filetype python inoremap <localleader>ip from pprint import pprint
  582. autocmd Filetype python inoremap <localleader>s self.
  583. " ]]] Local Mappings "
  584. " vim: fdm=marker ft=vim.go-template