use monokai instead of default (its the same theme)

This commit is contained in:
Mylloon 2023-09-18 14:20:40 +02:00
parent 6785277559
commit abd1c2ffc9
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,9 @@
{
"mkparents": true,
"colorcolumn": 80,
"colorscheme": "monokai",
"mkparents": true,
"rmtrailingws": true,
"scrollbar": true,
"softwrap": true,
"wordwrap": true,
"colorscheme": "default"
}
"wordwrap": true
}

View file

@ -28,7 +28,7 @@ main() {
# Set the fish theme
fish -c "fish_config theme choose 'Base16 Eighties' && yes | fish_config theme save"
fish -c "set fish_color_comment 5c6773" # custom comment color
sed -i "s/bubblegum/default/g" "$HOME"/.config/micro/settings.json
sed -i "s/bubblegum/monokai/g" "$HOME"/.config/micro/settings.json
;;
"sunrise" ) # Go to light mode
# Set the Terminal profile
@ -37,7 +37,7 @@ main() {
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:"${GT_default}"/ background-color "rgb(253,246,227)"
# Set the fish theme
fish -c "fish_config theme choose 'Solarized Light' && yes | fish_config theme save"
sed -i "s/default/bubblegum/g" "$HOME"/.config/micro/settings.json
sed -i "s/monokai/bubblegum/g" "$HOME"/.config/micro/settings.json
;;
* )
echo "Can't interpret given argument" ;;