|
diff --git a/urls b/urls
|
| ... |
| 32 |
https://willhbr.net/feed.xml Blogs |
32 |
https://willhbr.net/feed.xml Blogs |
| 33 |
https://andrewkelley.me/rss.xml Blogs |
33 |
https://andrewkelley.me/rss.xml Blogs |
| 34 |
https://beyondloom.com/blog/rss.xml Blogs |
34 |
https://beyondloom.com/blog/rss.xml Blogs |
|
|
35 |
https://decuser.github.io/feed.xml Blogs |
| 35 |
https://simonwillison.net/atom/entries/ Blogs |
36 |
https://simonwillison.net/atom/entries/ Blogs |
| 36 |
https://til.simonwillison.net/tils/feed.atom Blogs |
37 |
https://til.simonwillison.net/tils/feed.atom Blogs |
| 37 |
https://www.andreinc.net/feed.xml Blogs |
38 |
https://www.andreinc.net/feed.xml Blogs |
| ... |
|
diff --git a/vimrc b/vimrc
|
| ... |
| 31 |
" Code commenting - https://stackoverflow.com/a/1676672. |
31 |
" Code commenting - https://stackoverflow.com/a/1676672. |
| 32 |
augroup CodeCommenting |
32 |
augroup CodeCommenting |
| 33 |
autocmd! |
33 |
autocmd! |
| 34 |
autocmd FileType c,cpp,go,zig,javascript let b:comment_leader = '// ' |
34 |
autocmd FileType c,cpp,go,zig,javascript let b:comment_leader = '// ' |
| 35 |
autocmd FileType sh,ruby,python let b:comment_leader = '# ' |
35 |
autocmd FileType sh,ruby,python let b:comment_leader = '# ' |
| 36 |
autocmd FileType conf,fstab let b:comment_leader = '# ' |
36 |
autocmd FileType conf,fstab let b:comment_leader = '# ' |
| 37 |
autocmd FileType lua,sql let b:comment_leader = '-- ' |
37 |
autocmd FileType lua,sql let b:comment_leader = '-- ' |
| 38 |
autocmd FileType vim let b:comment_leader = '" ' |
38 |
autocmd FileType vim let b:comment_leader = '" ' |
| 39 |
augroup END |
39 |
augroup END |
| 40 |
noremap <silent> cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> |
40 |
noremap <silent> cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> |
| 41 |
noremap <silent> cu :<C-B>silent <C-E>s/^\(\s*\)\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> |
41 |
noremap <silent> cu :<C-B>silent <C-E>s/^\(\s*\)\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> |
| ... |