Update

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-22 03:52:33 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-22 03:52:41 +0200
Commit ba3f9851161e27cff4bff89d80a6b12d7ad9605e (patch)
-rw-r--r-- alacritty.yml 2
-rw-r--r-- gf2_config.ini 5
-rwxr-xr-x urls 1
-rw-r--r-- vimrc 10
4 files changed, 12 insertions, 6 deletions
diff --git a/alacritty.yml b/alacritty.yml
...
7
    lines: 60
7
    lines: 60
8
  
8
  
9
font:
9
font:
10
  size: 16
10
  size: 18
11
  normal:
11
  normal:
12
    family: Berkeley Mono
12
    family: Berkeley Mono
13
  bold:
13
  bold:
...
diff --git a/gf2_config.ini b/gf2_config.ini
  
1
[ui]
  
2
scale=1.6
  
3
font_size_interface=16
  
4
font_size_code=16
  
5
  
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>
...