Skip to content

Commit

Permalink
update through script - 2024-06-11 00:53:17
Browse files Browse the repository at this point in the history
  • Loading branch information
oasido committed Jun 10, 2024
1 parent 5516c84 commit 9823d37
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 35 deletions.
12 changes: 5 additions & 7 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,8 @@ alias topcpu="/bin/ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10"
alias f="find . | grep "
alias countfiles="for t in files links directories; do echo \`find . -type \${t:0:1} | wc -l\` \$t; done 2> /dev/null"
alias openports='netstat -nape --inet' # show open ports
alias v="nvim"
alias vi="nvim"
alias vim="nvim"
alias neovim="nvim"
alias c="clear"
alias pn="pnpm"
alias rm="trash"
Expand All @@ -58,13 +56,13 @@ alias sb="cd $SECOND_BRAIN"
alias scripts="cd $SCRIPTS"
alias startup="cd $STARTUP"
alias dot="cd $DOTFILES"
alias dotc="cd $DOTFILES/.config && v"
alias dotc="cd $DOTFILES/.config && vi"

# ricing
alias es="v $SCRIPTS"
alias ev="cd $HOME/.config/nvim && v"
alias ez="v $HOME/.zshrc"
alias eb="v $HOME/.bashrc"
alias es="vi $SCRIPTS"
alias ev="cd $HOME/.config/nvim && vi"
alias ez="vi $HOME/.zshrc"
alias eb="vi $HOME/.bashrc"
alias sz="source $HOME/.zshrc"
alias sbr="source $HOME/.bashrc"
alias heb="setxkbmap -layout us,il -option 'caps:ctrl_modifier,grp:alt_shift_toggle'"
Expand Down
64 changes: 36 additions & 28 deletions .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,49 +6,57 @@ size = 14
[font.normal]
family = "JetBrainsMono Nerd Font"

[window]
opacity = 0.95
# [window]
# opacity = 0.98

[window.padding]
x = 7
y = 1

[window.dimensions]
columns = 95
lines = 26
columns = 140
lines = 36

[keyboard]
bindings = [
{ key = "V", mods = "Control", action = "Paste" }
]

# Theme: Gnome (Gnome Terminal Default)
# TokyoNight Alacritty Colors
# Default colors
[colors.primary]
background = '#1e1e1e'
foreground = '#ffffff'
background = '#1a1b26'
foreground = '#c0caf5'

#[colors.cursor]
#cursor = '#c0caf5'
#text = '#1a1b26'

# Normal colors
[colors.normal]
black = '#171421'
red = '#c01c28'
green = '#26a269'
yellow = '#a2734c'
blue = '#12488b'
magenta = '#a347ba'
cyan = '#2aa1b3'
white = '#d0cfcc'
black = '#15161e'
red = '#f7768e'
green = '#9ece6a'
yellow = '#e0af68'
blue = '#7aa2f7'
magenta = '#bb9af7'
cyan = '#7dcfff'
white = '#a9b1d6'

# Bright colors
[colors.bright]
black = '#5e5c64'
red = '#f66151'
green = '#33d17a'
yellow = '#e9ad0c'
blue = '#2a7bde'
magenta = '#c061cb'
cyan = '#33c7de'
white = '#ffffff'
black = '#414868'
red = '#f7768e'
green = '#9ece6a'
yellow = '#e0af68'
blue = '#7aa2f7'
magenta = '#bb9af7'
cyan = '#7dcfff'
white = '#c0caf5'

# Indexed Colors
[[colors.indexed_colors]]
index = 16
color = '#ff9e64'

[[colors.indexed_colors]]
index = 17
color = '#db4b4b'

[env]
TERM = "xterm-256color"

0 comments on commit 9823d37

Please sign in to comment.