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.

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