mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
feat(console): fish colors
This commit is contained in:
parent
52bb3c9d29
commit
56e87062d7
3 changed files with 28 additions and 0 deletions
|
|
@ -41,3 +41,15 @@ if test -n "$EMACS_CONDA_ENV";
|
||||||
conda activate $EMACS_CONDA_ENV
|
conda activate $EMACS_CONDA_ENV
|
||||||
end
|
end
|
||||||
# Anaconda:2 ends here
|
# Anaconda:2 ends here
|
||||||
|
|
||||||
|
# [[file:../../Console.org::*Colors][Colors:1]]
|
||||||
|
set fish_color_command cyan
|
||||||
|
set fish_color_comment green
|
||||||
|
set fish_color_end white
|
||||||
|
set fish_color_error red
|
||||||
|
set fish_color_escape yellow
|
||||||
|
set fish_color_operator yellow
|
||||||
|
set fish_color_param magenta
|
||||||
|
set fish_color_quote brwhite
|
||||||
|
set fish_color_redirection yellow
|
||||||
|
# Colors:1 ends here
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
(specifications->manifest
|
(specifications->manifest
|
||||||
'(
|
'(
|
||||||
|
"tokei"
|
||||||
"jmtpfs"
|
"jmtpfs"
|
||||||
"unzip"
|
"unzip"
|
||||||
"password-store"
|
"password-store"
|
||||||
|
|
|
||||||
15
Console.org
15
Console.org
|
|
@ -458,6 +458,20 @@ if test -n "$EMACS_CONDA_ENV";
|
||||||
conda activate $EMACS_CONDA_ENV
|
conda activate $EMACS_CONDA_ENV
|
||||||
end
|
end
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Colors
|
||||||
|
Fish seems to have hardcoded colorcodes in some color settings. I set these to base16 colors so they would match Xresources.
|
||||||
|
|
||||||
|
#+begin_src fish
|
||||||
|
set fish_color_command cyan
|
||||||
|
set fish_color_comment green
|
||||||
|
set fish_color_end white
|
||||||
|
set fish_color_error red
|
||||||
|
set fish_color_escape yellow
|
||||||
|
set fish_color_operator yellow
|
||||||
|
set fish_color_param magenta
|
||||||
|
set fish_color_quote brwhite
|
||||||
|
set fish_color_redirection yellow
|
||||||
|
#+end_src
|
||||||
* Nushell
|
* Nushell
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:header-args+: :tangle ./.config/nu/config.toml :comments link
|
:header-args+: :tangle ./.config/nu/config.toml :comments link
|
||||||
|
|
@ -802,6 +816,7 @@ key_bindings:
|
||||||
| password-store | CLI password manager |
|
| password-store | CLI password manager |
|
||||||
| unzip | |
|
| unzip | |
|
||||||
| jmtpfs | A tool to mount MTP devices (e.g. Android) |
|
| jmtpfs | A tool to mount MTP devices (e.g. Android) |
|
||||||
|
| tokei | Count lines of code |
|
||||||
|
|
||||||
* Misc scripts
|
* Misc scripts
|
||||||
** =nt= - exec command with a finished notification
|
** =nt= - exec command with a finished notification
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue