aboutsummaryrefslogtreecommitdiffstats
path: root/home/chawan.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-12-15 09:46:58 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-12-15 09:46:58 +0200
commit3a14e52fc594296c6c3c7b66205e0747219b6231 (patch)
tree0812a38038aac5c365344c5598903077f04c3288 /home/chawan.nix
parent0df99f24d0df5c9420dd8168f24b60a85ed904f9 (diff)
downloadnixos-3a14e52fc594296c6c3c7b66205e0747219b6231.tar.zst
Update few configurations
Diffstat (limited to 'home/chawan.nix')
-rw-r--r--home/chawan.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/home/chawan.nix b/home/chawan.nix
deleted file mode 100644
index b343c11..0000000
--- a/home/chawan.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ vars, pkgs, ... }:
-
-{
- xdg.configFile."/home/petri/.config/chawan/config.toml".text = ''
- [buffer]
- autofocus = true
- images = true
- styling = true
- scripting = true
- history = true
-
- [input]
- vi-numeric-prefix = true
-
- [page]
- # Here, the arrow function will be called with the vi numbered prefix if
- # one was input, and with no argument otherwise.
- # The numeric prefix can never be zero, so it is safe to test for undefined
- # using the ternary operator.
- G = 'n => n ? pager.gotoLine(n) : pager.cursorLastLine()'
- '';
-}