fix
This commit is contained in:
parent
b35c85bd16
commit
177d3ca47c
7 changed files with 211 additions and 62 deletions
|
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
neovim = config.programs.neovim.enable;
|
||||
|
|
|
|||
|
|
@ -15,12 +15,13 @@ let
|
|||
enableNeovim = config.programs.neovim.enable;
|
||||
in
|
||||
{
|
||||
home.sessionVariables = lib.optionalAttrs enableZen {
|
||||
BROWSER = "zen";
|
||||
}
|
||||
// lib.optionalAttrs enableClaude {
|
||||
CLAUDE_CONFIG_DIR = "${config.xdg.configHome}/claude";
|
||||
};
|
||||
home.sessionVariables =
|
||||
lib.optionalAttrs enableZen {
|
||||
BROWSER = "zen";
|
||||
}
|
||||
// lib.optionalAttrs enableClaude {
|
||||
CLAUDE_CONFIG_DIR = "${config.xdg.configHome}/claude";
|
||||
};
|
||||
|
||||
programs.mpv.enable = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ in
|
|||
dotDir = "${config.xdg.configHome}/zsh";
|
||||
|
||||
profileExtra = ''
|
||||
start-hyprland
|
||||
[ "$(tty)" = "/dev/tty1" ] && [ -z "$WAYLAND_DISPLAY" ] && start-hyprland
|
||||
'';
|
||||
|
||||
history = {
|
||||
|
|
@ -201,7 +201,10 @@ in
|
|||
|
||||
autosuggestion = {
|
||||
enable = true;
|
||||
strategy = [ "history" "completion" ];
|
||||
strategy = [
|
||||
"history"
|
||||
"completion"
|
||||
];
|
||||
};
|
||||
|
||||
completionInit = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue