Compare commits

...

3 Commits

Author SHA1 Message Date
a9c8716302 save 2026-01-20 17:45:03 -05:00
3ebebadc9f brightness 2026-01-19 09:02:02 -05:00
5773a89ab5 svae 2026-01-18 21:21:19 -05:00
5 changed files with 69 additions and 44 deletions

View File

@@ -14,6 +14,9 @@ bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set +10%
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 10%-
# Use Mouse+$mod to drag floating windows to their wanted position # Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod floating_modifier $mod

View File

@@ -8,3 +8,8 @@ opt.splitright = true
opt.splitbelow = true opt.splitbelow = true
vim.cmd("colorscheme vim") vim.cmd("colorscheme vim")
-- mini.pick colors
vim.api.nvim_set_hl(0, "MiniPickNormal", { bg = "#000000" })
vim.api.nvim_set_hl(0, "MiniPickBorder", { bg = "#000000", fg = "#000000" })
vim.api.nvim_set_hl(0, "MiniPickMatchCurrent", { bg = "#1e1e2e" })

View File

@@ -33,6 +33,10 @@
"rev": "cf75da1a91071c6c041075eae4ca2326f9d1f52a", "rev": "cf75da1a91071c6c041075eae4ca2326f9d1f52a",
"src": "https://github.com/nvim-orgmode/orgmode" "src": "https://github.com/nvim-orgmode/orgmode"
}, },
"rainbow-delimiters.nvim": {
"rev": "d6b802552cbe7d643a3b6b31f419c248d1f1e220",
"src": "https://gitlab.com/HiPhish/rainbow-delimiters.nvim"
},
"simplyfile.nvim": { "simplyfile.nvim": {
"rev": "c4dfc0f3431898c3abbef267b226f6cdd2a67b38", "rev": "c4dfc0f3431898c3abbef267b226f6cdd2a67b38",
"src": "https://github.com/Rizwanelansyah/simplyfile.nvim" "src": "https://github.com/Rizwanelansyah/simplyfile.nvim"

View File

@@ -1,44 +0,0 @@
alias ls='ls --color=auto'
alias ll='ls -lah'
alias gg='lazygit'
alias v='nvim'
alias rr='russ read'
alias cp='cp -v'
export EDITOR=nvim
export SUDO_EDITOR="$EDITOR"
export TERM=xterm-256color
export GOPATH=$HOME/.local/go
take() {
mkdir $1;
cd $1
}
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
source $HOME/.zprofile
bindkey -e
[ -f "${XDG_DATA_HOME:-$HOME/.local/share}/zap/zap.zsh" ] && source "${XDG_DATA_HOME:-$HOME/.local/share}/zap/zap.zsh"
plug "zsh-users/zsh-autosuggestions"
plug "zsh-users/zsh-syntax-highlighting"
plug "zap-zsh/sudo"
plug "Aloxaf/fzf-tab"
autoload -Uz compinit
compinit
autoload -U bashcompinit
bashcompinit
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
setopt inc_append_history
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
setopt interactive_comments
export PATH=$HOME/.local/bin:$PATH
export PATH=$HOME/.local/go/bin:$PATH
export PATH=$HOME/opt/bin:$PATH
export LD_LIBRARY_PATH=$HOME/opt/lib:$LD_LIBRARY_PATH

57
zsh/.zshrc Normal file
View File

@@ -0,0 +1,57 @@
export TERM=xterm-256color
export EDITOR=nvim
export SUDO_EDITOR=nvim
export GOPATH="$HOME/.local/go"
export HISTSIZE=10000
export SAVEHIST=10000
export HISTFILE="$HOME/.cache/zsh/history"
setopt inc_append_history
setopt interactive_comments
export PATH="$HOME/.local/bin:$HOME/.local/go/bin:$HOME/opt/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/opt/lib:${LD_LIBRARY_PATH:-}"
alias ls='ls --color=auto'
alias ll='ls -lah'
alias gg='lazygit'
alias v='nvim'
alias rr='russ read'
alias cp='cp -v'
take() {
mkdir -p -- "$1" && cd -- "$1"
}
bindkey -e
autoload -Uz compinit colors
autoload -U bashcompinit
colors
compinit
bashcompinit
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
if [ -f "$HOME/.zprofile" ]; then
source "$HOME/.zprofile"
fi
if [ -x /home/linuxbrew/.linuxbrew/bin/brew ]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
ZAP_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/zap"
if [ -f "$ZAP_DIR/zap.zsh" ]; then
source "$ZAP_DIR/zap.zsh"
fi
plug "zsh-users/zsh-autosuggestions"
plug "zsh-users/zsh-syntax-highlighting"
plug "zap-zsh/sudo"
plug "Aloxaf/fzf-tab"