aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alacritty.yml2
-rw-r--r--gf2_config.ini5
-rwxr-xr-xurls1
-rw-r--r--vimrc10
4 files changed, 12 insertions, 6 deletions
diff --git a/alacritty.yml b/alacritty.yml
index 743c19d..fd6be34 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -7,7 +7,7 @@ window:
7 lines: 60 7 lines: 60
8 8
9font: 9font:
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
new file mode 100644
index 0000000..2759329
--- /dev/null
+++ b/gf2_config.ini
@@ -0,0 +1,5 @@
1[ui]
2scale=1.6
3font_size_interface=16
4font_size_code=16
5
diff --git a/urls b/urls
index 78f5f91..4823c9c 100755
--- a/urls
+++ b/urls
@@ -32,6 +32,7 @@ https://tratt.net/laurie/news.rss Blogs
32https://willhbr.net/feed.xml Blogs 32https://willhbr.net/feed.xml Blogs
33https://andrewkelley.me/rss.xml Blogs 33https://andrewkelley.me/rss.xml Blogs
34https://beyondloom.com/blog/rss.xml Blogs 34https://beyondloom.com/blog/rss.xml Blogs
35https://decuser.github.io/feed.xml Blogs
35https://simonwillison.net/atom/entries/ Blogs 36https://simonwillison.net/atom/entries/ Blogs
36https://til.simonwillison.net/tils/feed.atom Blogs 37https://til.simonwillison.net/tils/feed.atom Blogs
37https://www.andreinc.net/feed.xml Blogs 38https://www.andreinc.net/feed.xml Blogs
diff --git a/vimrc b/vimrc
index 5952011..dbabcba 100644
--- a/vimrc
+++ b/vimrc
@@ -31,11 +31,11 @@ autocmd FileType go setlocal formatprg=gofmt
31" Code commenting - https://stackoverflow.com/a/1676672. 31" Code commenting - https://stackoverflow.com/a/1676672.
32augroup CodeCommenting 32augroup 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 = '" '
39augroup END 39augroup END
40noremap <silent> cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR> 40noremap <silent> cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_leader,'\/')<CR>/<CR>:nohlsearch<CR>
41noremap <silent> cu :<C-B>silent <C-E>s/^\(\s*\)\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR> 41noremap <silent> cu :<C-B>silent <C-E>s/^\(\s*\)\V<C-R>=escape(b:comment_leader,'\/')<CR>//e<CR>:nohlsearch<CR>