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 = [ imports = [
./daily_apps.nix ./daily_apps.nix
./niri.nix ./niri.nix
./nvf.nix ./helix.nix
./shell ./shell
./create-project/create-project.nix ./create-project/create-project.nix
./games ./games

View file

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

View file

@ -25,7 +25,7 @@ def --env fzf-cd [] {
def --env fzf-nvim [] { 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) 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 != "" { if $file != null and $file != "" {
nvim $file ^$env.EDITOR $file
} }
} }

View file

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