mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
feat: add cloc to dev packages and disable ligatures only on cursor in kitty
This commit is contained in:
parent
09798a5b24
commit
9a1a7be247
2 changed files with 5 additions and 2 deletions
|
@ -10,6 +10,7 @@
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
git-lfs
|
git-lfs
|
||||||
d2
|
d2
|
||||||
|
cloc
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,6 +18,8 @@
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
|
|
||||||
|
# Store layout configs in an XDG directory and not in a .direnv local directory
|
||||||
stdlib = ''
|
stdlib = ''
|
||||||
: ''${XDG_CACHE_HOME:=$HOME/.cache}
|
: ''${XDG_CACHE_HOME:=$HOME/.cache}
|
||||||
declare -A direnv_layout_dirs
|
declare -A direnv_layout_dirs
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
# Do not wait for inherited child processes.
|
# Do not wait for inherited child processes.
|
||||||
close_on_child_death = "yes";
|
close_on_child_death = "yes";
|
||||||
|
|
||||||
# Disable ligatures.
|
# Disable ligatures when the cursor is on them.
|
||||||
disable_ligatures = "always";
|
disable_ligatures = "cursor";
|
||||||
|
|
||||||
# Modified onehalfdark color scheme
|
# Modified onehalfdark color scheme
|
||||||
foreground = "#c9d3e5";
|
foreground = "#c9d3e5";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue