aboutsummaryrefslogtreecommitdiffstats
path: root/home/chawan
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-12-04 18:05:00 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-12-04 20:39:41 +0200
commit4d7fbc33a139d6484ae86c45b570b2c99fc737ef (patch)
tree46c5788b8ed0eaf6f6581b3b7a87d633d842a8dd /home/chawan
parent7ab57a27c9648b3a8e12f755e03fc84eb50291b4 (diff)
downloadnixos-4d7fbc33a139d6484ae86c45b570b2c99fc737ef.tar.zst
Test
Diffstat (limited to 'home/chawan')
-rw-r--r--home/chawan/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/home/chawan/default.nix b/home/chawan/default.nix
deleted file mode 100644
index b343c11..0000000
--- a/home/chawan/default.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()'
- '';
-}