this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor vimrc + ssh config fixes

+12 -4
.config/yadm/alt/.ssh/config.local##class.work

This is a binary file and will not be displayed.

+12 -4
.vimrc
··· 51 51 " Use newer info than the macOS builtin 52 52 let g:infoprg = '/usr/local/opt/texinfo/bin/info' 53 53 54 + " filetype matching 55 + augroup CustomFiletypes 56 + autocmd! 57 + autocmd BufRead,BufNewFile */.ssh/config* set filetype=sshconfig 58 + autocmd BufRead,BufNewFile */.gitconfig* set filetype=gitconfig 59 + augroup END 60 + 54 61 " Keybinds for info files 55 62 augroup InfoFile 56 63 autocmd! ··· 62 69 autocmd FileType info nmap <buffer> gf <Plug>(InfoFollow) 63 70 autocmd FileType info nmap <buffer> go <Plug>(InfoGoto) 64 71 augroup END 72 + 65 73 66 74 " Augroups, must be before `syntax on` 67 75 augroup CustomTodo ··· 221 229 222 230 set mouse= 223 231 224 - autocmd BufEnter github.com_*.txt set filetype=markdown 225 - autocmd BufEnter www.shadertoy.com_*.txt set filetype=glsl 226 - autocmd BufEnter pkg.go.dev_*.txt set filetype=go 227 - autocmd BufEnter go.dev_*.txt set filetype=go 232 + autocmd BufEnter github.com_*.txt set filetype=markdown 233 + autocmd BufEnter www.shadertoy.com_*.txt set filetype=glsl 234 + autocmd BufEnter pkg.go.dev_*.txt set filetype=go 235 + autocmd BufEnter go.dev_*.txt set filetype=go 228 236 229 237 " TODO: maybe set this after a delay for UIEnter, like in 230 238 " https://github.com/glacambre/firenvim/issues/972#issuecomment-1048209573