programs: Add dynamic-colors
This commit is contained in:
parent
11f7ac50ca
commit
aef0baf527
|
@ -114,9 +114,10 @@ in
|
||||||
xkcdpass # memorable password generator
|
xkcdpass # memorable password generator
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
toilet # free figlet
|
|
||||||
python38Packages.ipython # better python repl (useful for one-liners)
|
|
||||||
bwrap-helper # helper to create bubblewrap containers
|
bwrap-helper # helper to create bubblewrap containers
|
||||||
|
dynamic-colors # on-the-fly color scheme switching
|
||||||
|
python38Packages.ipython # better python repl (useful for one-liners)
|
||||||
|
toilet # free figlet
|
||||||
|
|
||||||
# vim
|
# vim
|
||||||
neovim-remote # controlling another neovim process
|
neovim-remote # controlling another neovim process
|
||||||
|
|
|
@ -53,7 +53,10 @@ in
|
||||||
];
|
];
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
cp = "cp --reflink=auto"; # TODO: remove with coreutils > 8.32
|
cp = "cp --reflink=auto"; # TODO: remove with coreutils > 8.32
|
||||||
|
dcsd = "dynamic-colors switch solarized-dark";
|
||||||
|
dcsl = "dynamic-colors switch solarized-light";
|
||||||
exa = "exa --git --binary";
|
exa = "exa --git --binary";
|
||||||
|
ip = "ip --color=auto";
|
||||||
ipy = "ipython3";
|
ipy = "ipython3";
|
||||||
l = "exa -l";
|
l = "exa -l";
|
||||||
la = "exa -la";
|
la = "exa -la";
|
||||||
|
@ -62,7 +65,6 @@ in
|
||||||
userctl = "systemctl --user";
|
userctl = "systemctl --user";
|
||||||
vim = "nvim";
|
vim = "nvim";
|
||||||
vimdiff = "nvim -d";
|
vimdiff = "nvim -d";
|
||||||
ip = "ip --color=auto";
|
|
||||||
};
|
};
|
||||||
initExtra = lib.mkMerge [
|
initExtra = lib.mkMerge [
|
||||||
(lib.mkBefore ''
|
(lib.mkBefore ''
|
||||||
|
|
Loading…
Reference in a new issue