Compare commits
3 Commits
b55df5dbad
...
main
Author | SHA1 | Date | |
---|---|---|---|
8b1d380eae | |||
e9c1eaeca7 | |||
7e15993714 |
12
.zshrc
12
.zshrc
@@ -1,3 +1,10 @@
|
|||||||
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||||||
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||||
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
# If you come from bash you might have to change your $PATH.
|
# If you come from bash you might have to change your $PATH.
|
||||||
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
|
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
|
||||||
export PATH=$HOME/.cargo/bin:$PATH
|
export PATH=$HOME/.cargo/bin:$PATH
|
||||||
@@ -9,7 +16,7 @@ export ZSH="$HOME/.oh-my-zsh"
|
|||||||
# load a random theme each time Oh My Zsh is loaded, in which case,
|
# load a random theme each time Oh My Zsh is loaded, in which case,
|
||||||
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
ZSH_THEME="robbyrussell"
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||||
|
|
||||||
# Set list of themes to pick from when loading at random
|
# Set list of themes to pick from when loading at random
|
||||||
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
@@ -122,3 +129,6 @@ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
|||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
#eval $(/usr/bin/gnome-keyring-daemon --start --components=secrets)
|
#eval $(/usr/bin/gnome-keyring-daemon --start --components=secrets)
|
||||||
export SSH_AUTH_SOCK
|
export SSH_AUTH_SOCK
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
35
alacritty/alacritty.toml
Normal file
35
alacritty/alacritty.toml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
[env]
|
||||||
|
TERM = "xterm-256color"
|
||||||
|
[terminal]
|
||||||
|
shell = "/usr/bin/zsh"
|
||||||
|
[window]
|
||||||
|
padding.x = 10
|
||||||
|
padding.y = 10
|
||||||
|
|
||||||
|
decorations = "None"
|
||||||
|
|
||||||
|
opacity = 0.99
|
||||||
|
|
||||||
|
blur = true
|
||||||
|
|
||||||
|
# option_as_alt = "Both"
|
||||||
|
|
||||||
|
[font]
|
||||||
|
normal = { family = "FiraCode Nerd Font Mono", style = "Regular" }
|
||||||
|
bold = { family = "HackNerdFont Mono", style = "Bold" }
|
||||||
|
italic = { family = "HackNerdFont Mono", style = "Italic" }
|
||||||
|
size = 10
|
||||||
|
|
||||||
|
[selection]
|
||||||
|
save_to_clipboard = true
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
key = "Space"
|
||||||
|
mods = "Control"
|
||||||
|
chars = "\u0000"
|
||||||
|
|
||||||
|
[general]
|
||||||
|
import = [
|
||||||
|
"~/.config/alacritty/themes/themes/coolnight.toml"
|
||||||
|
# "~/.config/alacritty/themes/themes/gotham.toml"
|
||||||
|
]
|
Reference in New Issue
Block a user