about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/tridactyl
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
commitc52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c (patch)
treee8b947710b467b32740598ff574982097836f66c /modules/home.legacy/conf/tridactyl
parentchore(pkgs/yt): 1.2.1 -> 1.3.0 (diff)
downloadnixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.tar.gz
nixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.zip
refactor(modules): Move all system modules to `by-name`
From now on all modules should be added to the new `by-name` directory.
This should help remove the (superficial and utterly useless)
distinction between `home-manager` and `NixOS` modules.
Diffstat (limited to 'modules/home.legacy/conf/tridactyl')
-rw-r--r--modules/home.legacy/conf/tridactyl/config.vim47
-rw-r--r--modules/home.legacy/conf/tridactyl/default.nix3
2 files changed, 50 insertions, 0 deletions
diff --git a/modules/home.legacy/conf/tridactyl/config.vim b/modules/home.legacy/conf/tridactyl/config.vim
new file mode 100644
index 00000000..84e290cb
--- /dev/null
+++ b/modules/home.legacy/conf/tridactyl/config.vim
@@ -0,0 +1,47 @@
+" vim: filetype=vim
+
+" This wipes all existing settings. This means that if a setting in this file
+" is removed, then it will return to default. In other words, this file serves
+" as an enforced single point of truth for Tridactyl's configuration.
+sanitize tridactyllocal tridactylsync
+
+" Just use a blank page for new tab. It would be nicer to use the standard
+" Firefox homepage, but Tridactyl doesn't support this yet.
+"TODO: use custome file
+"set newtab file:///home/soispha/new.html
+
+" Set a nice colorscheme
+colorscheme midnight
+
+" Delete temp files after use
+alias editor_rm composite editor | jsb -p tri.native.run(`rm -f '${JS_ARG[0]}'`)
+bind --mode=insert <C-i> editor_rm
+bind --mode=input <C-i> editor_rm
+
+" Use vim in tmux for editor.
+set editorcmd alacritty -e nvim
+
+" Ctrl-F should use the browser's native 'find' functionality.
+unbind <C-f>
+
+" But also support Tridactyl search too.
+bind / fillcmdline find
+bind ? fillcmdline find -?
+bind l findnext 1
+bind L findnext -1
+" Remove search highlighting.
+bind ,<Space> nohlsearch
+" Use sensitive case. Smart case would be nice here, but it doesn't work.
+set findcase smartcase
+
+" Smooth scrolling, yes please. This is still a bit janky in Tridactyl.
+set smoothscroll true
+
+" The default jump of 10 is a bit much.
+bind t scrollline 5
+bind n scrollline -5
+
+" K and J should move between tabs. x should close them.
+bind T tabprev
+bind N tabnext
+bind x tabclose
diff --git a/modules/home.legacy/conf/tridactyl/default.nix b/modules/home.legacy/conf/tridactyl/default.nix
new file mode 100644
index 00000000..23307cfe
--- /dev/null
+++ b/modules/home.legacy/conf/tridactyl/default.nix
@@ -0,0 +1,3 @@
+{...}: {
+  xdg.configFile."tridactyl/tridactylrc".source = ./config.vim;
+}