Compare commits

..

No commits in common. "9ac5fedc75078d0932c846eea1936a3ced13009c" and "662be5e96dba7c954badaff4ac5603b083a494d5" have entirely different histories.

4 changed files with 16 additions and 15 deletions

View file

@ -834,11 +834,11 @@
"kakoune": {
"flake": false,
"locked": {
"lastModified": 1711536985,
"narHash": "sha256-Sm/m2fdjNLK2DUDQPAXKAD3vRPJ5tPeus1307MPc8Ro=",
"lastModified": 1709208365,
"narHash": "sha256-ELe7LOpRXudxluxI/RDRd8+pMNiIQFFNd4PC7LXgWss=",
"owner": "mawww",
"repo": "kakoune",
"rev": "2f7568485ff6ac6aaf83f6ac5988de6a723083c4",
"rev": "504b074aa715b1d4893cd6f918f3cc333e5f3007",
"type": "github"
},
"original": {
@ -1056,11 +1056,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1711231723,
"narHash": "sha256-dARJQ8AJOv6U+sdRePkbcVyVbXJTi1tReCrkkOeusiA=",
"lastModified": 1710283812,
"narHash": "sha256-F+s4//HwNEXtgxZ6PLoe5khDTmUukPYbjCvx7us2vww=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e1d501922fd7351da4200e1275dfcf5faaad1220",
"rev": "73bf415737ceb66a6298f806f600cfe4dccd0a41",
"type": "github"
},
"original": {
@ -1088,11 +1088,11 @@
},
"nixpkgs_11": {
"locked": {
"lastModified": 1711124224,
"narHash": "sha256-l0zlN/3CiodvWDtfBOVxeTwYSRz93muVbXWSpaMjXxM=",
"lastModified": 1710162809,
"narHash": "sha256-i2R2bcnQp+85de67yjgZVvJhd6rRnJbSYNpGmB6Leb8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "56528ee42526794d413d6f244648aaee4a7b56c0",
"rev": "ddcd7598b2184008c97e6c9c6a21c5f37590b8d2",
"type": "github"
},
"original": {

View file

@ -10,11 +10,6 @@ set global kts_sky "rgb:6aa622"
colorscheme catppuccin-latte
set global background default
# Set indentation guides
add-highlighter global/indent-guides show-whitespaces -tab " " -spc " " -lf " " -nbsp " "
set-face global Whitespace default,default
set-face global WhitespaceIndent +d@comment
# Assistant
set global ui_options terminal_assistant=cat

View file

@ -397,7 +397,7 @@ in
enable = true;
timeouts = [
# Lock after 15 minutes of idle
# { timeout = 15 * 60; command = cfg.lockCmd; }
{ timeout = 15 * 60; command = cfg.lockCmd; }
];
events = [
{ event = "lock"; command = cfg.lockCmd; }

View file

@ -57,6 +57,12 @@ let
src = inputs.kakoune;
patches = [
# patches in the original package was already applied
# https://github.com/mawww/kakoune/pull/5108
(final.fetchpatch {
url = "https://github.com/mawww/kakoune/commit/64b3433905eeb33653ed617d61906ba68c686916.patch";
hash = "sha256-XYA4GcOEuWHsnDhMI0nXbg9Myv2o1UZ8qvzavIXbkJo=";
})
];
});
};