non important commit

This commit is contained in:
Jiří Maxmilián Stříbrný 2026-03-15 10:03:43 +01:00
parent ae00a90d1c
commit 0b253c633b
4 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
imports = [
./daily_apps.nix
./niri.nix
./nvf.nix
./helix.nix
./shell
./create-project/create-project.nix
./games

View file

@ -1,6 +1,7 @@
{pkgs, ...}: {
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
theme = "catppuccin_mocha";

View file

@ -25,7 +25,7 @@ def --env fzf-cd [] {
def --env fzf-nvim [] {
let file = (fd -t f -L . | fzf --reverse --height 40% --border rounded --preview=("bat -p -P --color always {}") --preview-window=border-left)
if $file != null and $file != "" {
nvim $file
^$env.EDITOR $file
}
}

View file

@ -15,7 +15,6 @@
];
home.sessionVariables = {
EDITOR = "nvim";
PAGER = "bat -l man";
MANPAGER = "bat -l man";
};