mirror of https://github.com/Flinner/dots.git
feat: minor updates
This commit is contained in:
parent
df531f3f6a
commit
06ca707028
|
@ -94,6 +94,11 @@ action = "SpawnNewInstance"
|
||||||
key = "Return"
|
key = "Return"
|
||||||
mods = "Shift|Super"
|
mods = "Shift|Super"
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
action = "CreateNewTab"
|
||||||
|
key = "T"
|
||||||
|
mods = "Control|Shift"
|
||||||
|
|
||||||
#[schemes.flinty_dark.bright]
|
#[schemes.flinty_dark.bright]
|
||||||
#black = "#686868"
|
#black = "#686868"
|
||||||
#blue = "#57c7ff"
|
#blue = "#57c7ff"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
:set prompt "\ESC[1;34m%s\n\ESC[0;34mλ> \ESC[m"
|
-- :set prompt "\ESC[1;34m%s\n\ESC[0;34mλ> \ESC[m"
|
||||||
|
:set prompt "\ESC[1;34m%s\n\ESC[0;34m────────────────────\nλ> \ESC[m"
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"snippets.ultisnips.pythonPrompt": false
|
||||||
|
}
|
|
@ -5,9 +5,9 @@
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"reload_style_on_change": true,
|
"reload_style_on_change": true,
|
||||||
"modules-left": ["hyprland/workspaces"],
|
"modules-left": ["hyprland/workspaces"],
|
||||||
"modules-center": ["custom/music"],
|
"modules-center": ["pulseaudio","custom/prayers", "network", "cpu", "memory", "clock", "custom/music"],
|
||||||
// "modules-right": ["pulseaudio", "cpu", "backlight", "battery", "clock", "tray", "custom/lock", "custom/power"],
|
// "modules-right": ["pulseaudio", "cpu", "backlight", "battery", "clock", "tray", "custom/lock", "custom/power"],
|
||||||
"modules-right": ["pulseaudio","custom/prayers", "network", "cpu", "memory", "clock", "tray", "custom/lock", "custom/power"],
|
"modules-right": ["tray", "custom/lock", "custom/power"],
|
||||||
"hyprland/workspaces": {
|
"hyprland/workspaces": {
|
||||||
"disable-scroll": true,
|
"disable-scroll": true,
|
||||||
"sort-by-name": true,
|
"sort-by-name": true,
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: FantasqueSansMono Nerd Font;
|
font-family: FantasqueSansMono Nerd Font;
|
||||||
font-size: 10px;
|
font-size: 12px;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,10 @@ autoload -Uz _zinit
|
||||||
### End of Zinit's installer chunk
|
### End of Zinit's installer chunk
|
||||||
#===============================================================================================
|
#===============================================================================================
|
||||||
|
|
||||||
|
if [[ "${TERM}" == "dumb" ]]; then
|
||||||
|
exec sh
|
||||||
|
fi
|
||||||
|
|
||||||
# Get a random preset
|
# Get a random preset
|
||||||
fastfetch --config $(printf "%s\n" examples/{6,7,9,13,17,20,21,22} | shuf -n 1)
|
fastfetch --config $(printf "%s\n" examples/{6,7,9,13,17,20,21,22} | shuf -n 1)
|
||||||
|
|
||||||
|
@ -65,7 +69,7 @@ zplugin light zsh-users/zsh-autosuggestions
|
||||||
zplugin ice wait'0' lucid
|
zplugin ice wait'0' lucid
|
||||||
zinit load agkozak/zsh-z
|
zinit load agkozak/zsh-z
|
||||||
|
|
||||||
zplugin ice wait'0' lucid
|
zplugin ice wait'1' lucid
|
||||||
zinit load "MichaelAquilina/zsh-auto-notify"
|
zinit load "MichaelAquilina/zsh-auto-notify"
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,6 +107,7 @@ setopt EXTENDED_HISTORY # record command start time
|
||||||
SAVEHIST=1000
|
SAVEHIST=1000
|
||||||
HISTSIZE=1000
|
HISTSIZE=1000
|
||||||
HISTFILE="$HOME/.local/share/zsh/zsh_history"
|
HISTFILE="$HOME/.local/share/zsh/zsh_history"
|
||||||
|
AUTO_NOTIFY_IGNORE+=("fm", "ranger", "nvim")
|
||||||
#===============================================================================================
|
#===============================================================================================
|
||||||
|
|
||||||
############
|
############
|
||||||
|
@ -318,5 +323,5 @@ eval "$(starship init zsh)"
|
||||||
export QSYS_ROOTDIR="/home/lambda/Programs/intelQuartus/quartus/sopc_builder/bin"
|
export QSYS_ROOTDIR="/home/lambda/Programs/intelQuartus/quartus/sopc_builder/bin"
|
||||||
export JUPYTERLAB_DIR=$HOME/.local/share/jupyter/lab
|
export JUPYTERLAB_DIR=$HOME/.local/share/jupyter/lab
|
||||||
|
|
||||||
#[ -f "/home/lambda/.ghcup/env" ] && . "/home/lambda/.ghcup/env" # ghcup-env
|
[ -f "/home/lambda/.ghcup/env" ] && . "/home/lambda/.ghcup/env" # ghcup-env
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue