mirror of
https://github.com/Steffo99/config-fish.git
synced 2024-12-22 14:54:23 +00:00
Make some config improvements
This commit is contained in:
parent
c26d3bebd3
commit
84d68eeb4a
5 changed files with 19 additions and 20 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
/fish_variables
|
/fish_variables
|
||||||
|
/conf.d
|
||||||
|
/functions/alias.fish
|
||||||
|
|
1
conf.d/.gitignore
vendored
1
conf.d/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
_*
|
|
|
@ -1,15 +0,0 @@
|
||||||
# Color scheme
|
|
||||||
set -U "fish_color_normal" "normal"
|
|
||||||
set -U "fish_color_command" "bryellow"
|
|
||||||
set -U "fish_color_keyword" "yellow"
|
|
||||||
set -U "fish_color_quote" "brgreen"
|
|
||||||
set -U "fish_color_redirection" "cyan"
|
|
||||||
set -U "fish_color_end" "brmagenta"
|
|
||||||
set -U "fish_color_error" "red"
|
|
||||||
set -U "fish_color_param" "brwhite"
|
|
||||||
set -U "fish_color_comment" "brblack"
|
|
||||||
set -U "fish_color_selection" "white"
|
|
||||||
set -U "fish_color_operator" "cyan"
|
|
||||||
set -U "fish_color_escape" "green"
|
|
||||||
set -U "fish_color_autosuggestion" "brblack"
|
|
||||||
set -U "fish_color_cancel" "white" "--background=brred"
|
|
|
@ -1,2 +0,0 @@
|
||||||
# Greeting
|
|
||||||
set -U "fish_greeting" ""
|
|
19
config.fish
19
config.fish
|
@ -1,3 +1,18 @@
|
||||||
|
# Greeting
|
||||||
|
set -U "fish_greeting" ""
|
||||||
|
|
||||||
# Created by `pipx` on 2022-01-04 02:25:15
|
# Color scheme
|
||||||
set PATH $PATH /home/steffo/.local/bin
|
set -U "fish_color_normal" "normal"
|
||||||
|
set -U "fish_color_command" "bryellow"
|
||||||
|
set -U "fish_color_keyword" "yellow"
|
||||||
|
set -U "fish_color_quote" "brgreen"
|
||||||
|
set -U "fish_color_redirection" "cyan"
|
||||||
|
set -U "fish_color_end" "brmagenta"
|
||||||
|
set -U "fish_color_error" "red"
|
||||||
|
set -U "fish_color_param" "brwhite"
|
||||||
|
set -U "fish_color_comment" "brblack"
|
||||||
|
set -U "fish_color_selection" "white"
|
||||||
|
set -U "fish_color_operator" "cyan"
|
||||||
|
set -U "fish_color_escape" "green"
|
||||||
|
set -U "fish_color_autosuggestion" "brblack"
|
||||||
|
set -U "fish_color_cancel" "white" "--background=brred"
|
||||||
|
|
Loading…
Reference in a new issue