Compare commits
2 Commits
8ca661cd95
...
0d61dc21b9
Author | SHA1 | Date | |
---|---|---|---|
|
0d61dc21b9 | ||
|
cc6a54b8f2 |
334
.wezterm.lua
334
.wezterm.lua
@ -1,97 +1,291 @@
|
|||||||
-- Pull in the wezterm API
|
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
-- This will hold the configuration.
|
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
-- This is where you actually apply your config choices
|
|
||||||
|
|
||||||
-- For example, changing the color scheme:
|
|
||||||
config.color_scheme = 'Argonaut (Gogh)'
|
|
||||||
|
|
||||||
-- keybinds
|
-- keybinds
|
||||||
config.leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1000 }
|
config.leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1000 }
|
||||||
config.keys = {
|
config.keys = {
|
||||||
-- splitting
|
{
|
||||||
{
|
mods = "LEADER|SHIFT",
|
||||||
mods = "LEADER|SHIFT",
|
key = '"',
|
||||||
key = '"',
|
action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }
|
||||||
action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }
|
},
|
||||||
},
|
{
|
||||||
{
|
mods = "LEADER|SHIFT",
|
||||||
mods = "LEADER|SHIFT",
|
key = "%",
|
||||||
key = "%",
|
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }
|
||||||
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }
|
},
|
||||||
},
|
{
|
||||||
{
|
mods = 'LEADER',
|
||||||
mods = 'LEADER',
|
key = 'z',
|
||||||
key = 'z',
|
action = wezterm.action.TogglePaneZoomState
|
||||||
action = wezterm.action.TogglePaneZoomState
|
},
|
||||||
},
|
{
|
||||||
{
|
mods = "LEADER",
|
||||||
mods = "LEADER",
|
key = "Space",
|
||||||
key = "Space",
|
action = wezterm.action.RotatePanes "Clockwise"
|
||||||
action = wezterm.action.RotatePanes "Clockwise"
|
},
|
||||||
},
|
{
|
||||||
{
|
mods = 'LEADER',
|
||||||
mods = 'LEADER',
|
key = '0',
|
||||||
key = '0',
|
action = wezterm.action.PaneSelect {
|
||||||
action = wezterm.action.PaneSelect {
|
mode = 'SwapWithActive',
|
||||||
mode = 'SwapWithActive',
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'v',
|
||||||
|
mods = 'LEADER',
|
||||||
|
action = wezterm.action.ActivateCopyMode
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'a',
|
||||||
|
mods = 'LEADER|CTRL',
|
||||||
|
action = wezterm.action.SendKey { key = 'a', mods = 'CTRL' },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'k',
|
||||||
|
mods = 'ALT',
|
||||||
|
action = wezterm.action.ScrollToPrompt(-1)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'j',
|
||||||
|
mods = 'ALT',
|
||||||
|
action = wezterm.action.ScrollToPrompt(1)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'c',
|
||||||
|
mods = 'LEADER',
|
||||||
|
action = wezterm.action.ScrollToPrompt(1)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'n',
|
||||||
|
mods = 'LEADER',
|
||||||
|
action = wezterm.action.SwitchWorkspaceRelative(1)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'p',
|
||||||
|
mods = 'LEADER',
|
||||||
|
action = wezterm.action.SwitchWorkspaceRelative(-1)
|
||||||
},
|
},
|
||||||
},
|
|
||||||
{
|
|
||||||
key = 'v',
|
|
||||||
mods = 'LEADER',
|
|
||||||
action = wezterm.action.ActivateCopyMode
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key = 'a',
|
|
||||||
mods = 'LEADER|CTRL',
|
|
||||||
action = wezterm.action.SendKey { key = 'a', mods = 'CTRL' },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key = 'k',
|
|
||||||
mods = 'ALT',
|
|
||||||
action = wezterm.action.ScrollToPrompt(-1)
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key = 'j',
|
|
||||||
mods = 'ALT',
|
|
||||||
action = wezterm.action.ScrollToPrompt(1)
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
config.mouse_bindings = {
|
config.mouse_bindings = {
|
||||||
{
|
{
|
||||||
event = { Down = { streak = 2, button='Left' } },
|
event = { Down = { streak = 2, button='Left' } },
|
||||||
action = wezterm.action.SelectTextAtMouseCursor 'SemanticZone',
|
action = wezterm.action.SelectTextAtMouseCursor 'SemanticZone',
|
||||||
mods = 'SHIFT'
|
mods = 'SHIFT'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- stylin'
|
||||||
|
local color = (function()
|
||||||
|
local COLOR = require "colors"
|
||||||
|
|
||||||
|
local coolors = {
|
||||||
|
COLOR.VERIDIAN,
|
||||||
|
COLOR.PAYNE,
|
||||||
|
COLOR.INDIGO,
|
||||||
|
COLOR.CAROLINA,
|
||||||
|
COLOR.FLAME,
|
||||||
|
COLOR.JET,
|
||||||
|
COLOR.TAUPE,
|
||||||
|
COLOR.ECRU,
|
||||||
|
COLOR.VIOLET,
|
||||||
|
COLOR.VERDIGRIS
|
||||||
|
}
|
||||||
|
|
||||||
|
return coolors[math.random(#coolors)]
|
||||||
|
end)()
|
||||||
|
|
||||||
|
local color_primary = color
|
||||||
|
|
||||||
|
local title_color_bg = color_primary.bg
|
||||||
|
local title_color_fg = color_primary.fg
|
||||||
|
|
||||||
|
local color_off = title_color_bg:lighten(0.4)
|
||||||
|
local color_on = color_off:lighten(0.4)
|
||||||
|
wezterm.on('update-right-status', function(window)
|
||||||
|
local bat = ''
|
||||||
|
local b = wezterm.battery_info()[1]
|
||||||
|
bat = wezterm.format {
|
||||||
|
{ Foreground = {
|
||||||
|
Color =
|
||||||
|
b.state_of_charge > 0.2 and color_on or color_off,
|
||||||
|
} },
|
||||||
|
{ Text = '▉' },
|
||||||
|
{ Foreground = {
|
||||||
|
Color =
|
||||||
|
b.state_of_charge > 0.4 and color_on or color_off,
|
||||||
|
} },
|
||||||
|
{ Text = '▉' },
|
||||||
|
{ Foreground = {
|
||||||
|
Color =
|
||||||
|
b.state_of_charge > 0.6 and color_on or color_off,
|
||||||
|
} },
|
||||||
|
{ Text = '▉' },
|
||||||
|
{ Foreground = {
|
||||||
|
Color =
|
||||||
|
b.state_of_charge > 0.8 and color_on or color_off,
|
||||||
|
} },
|
||||||
|
{ Text = '▉' },
|
||||||
|
{ Background = {
|
||||||
|
Color =
|
||||||
|
b.state_of_charge > 0.98 and color_on or color_off,
|
||||||
|
} },
|
||||||
|
{ Foreground = {
|
||||||
|
Color =
|
||||||
|
b.state == "Charging"
|
||||||
|
and color_on:lighten(0.3):complement()
|
||||||
|
or
|
||||||
|
(b.state_of_charge < 0.2 and wezterm.GLOBAL.count % 2 == 0)
|
||||||
|
and color_on:lighten(0.1):complement()
|
||||||
|
or color_off:darken(0.1)
|
||||||
|
} },
|
||||||
|
{ Text = ' ⚡ ' },
|
||||||
|
}
|
||||||
|
|
||||||
|
local time = wezterm.strftime '%k:%M '
|
||||||
|
|
||||||
|
local bg1 = title_color_bg:lighten(0.1)
|
||||||
|
local bg2 = title_color_bg:lighten(0.2)
|
||||||
|
|
||||||
|
window:set_right_status(
|
||||||
|
wezterm.format {
|
||||||
|
{ Background = { Color = title_color_bg } },
|
||||||
|
{ Foreground = { Color = bg1 } },
|
||||||
|
{ Text = '' },
|
||||||
|
{ Background = { Color = title_color_bg:lighten(0.1) } },
|
||||||
|
{ Foreground = { Color = title_color_fg } },
|
||||||
|
{ Text = ' ' .. window:active_workspace() .. ' ' },
|
||||||
|
{ Foreground = { Color = bg1 } },
|
||||||
|
{ Background = { Color = bg2 } },
|
||||||
|
{ Text = '' },
|
||||||
|
{ Foreground = { Color = title_color_bg:lighten(0.4) } },
|
||||||
|
{ Foreground = { Color = title_color_fg } },
|
||||||
|
{ Text = ' ' .. time .. ' ' .. bat }
|
||||||
|
}
|
||||||
|
)
|
||||||
|
end)
|
||||||
|
wezterm.on('gui-startup', function(cmd)
|
||||||
|
local mux = wezterm.mux
|
||||||
|
|
||||||
|
local padSize = 80
|
||||||
|
local screenWidth = 1920
|
||||||
|
local screenHeight = 1080
|
||||||
|
|
||||||
|
local tab, pane, window = mux.spawn_window(cmd or {
|
||||||
|
workspace = 'main',
|
||||||
|
})
|
||||||
|
|
||||||
|
if window ~= nil then
|
||||||
|
window:gui_window():set_position(padSize, padSize)
|
||||||
|
window:gui_window():set_inner_size(screenWidth - (padSize * 2), screenHeight - (padSize * 2) - 48)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
local TAB_EDGE_LEFT = wezterm.nerdfonts.ple_left_half_circle_thick
|
||||||
|
local TAB_EDGE_RIGHT = wezterm.nerdfonts.ple_right_half_circle_thick
|
||||||
|
|
||||||
|
local function tab_title(tab_info)
|
||||||
|
local title = tab_info.tab_title
|
||||||
|
local icon = tab_info.active_pane.user_vars.ICON
|
||||||
|
if icon then
|
||||||
|
return icon .. ' ' .. tab_info.active_pane.title:gsub("%.exe", ""):gsub("panki: ", "")
|
||||||
|
else
|
||||||
|
return tab_info.active_pane.title:gsub("%.exe", ""):gsub("panki: ", "")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
wezterm.on(
|
||||||
|
'format-tab-title',
|
||||||
|
function(tab, _, _, _, hover, max_width)
|
||||||
|
local edge_background = title_color_bg
|
||||||
|
local background = title_color_bg:lighten(0.05)
|
||||||
|
local foreground = title_color_fg
|
||||||
|
|
||||||
|
if tab.is_active then
|
||||||
|
background = background:lighten(0.1)
|
||||||
|
foreground = foreground:lighten(0.1)
|
||||||
|
elseif hover then
|
||||||
|
background = background:lighten(0.2)
|
||||||
|
foreground = foreground:lighten(0.2)
|
||||||
|
end
|
||||||
|
|
||||||
|
local edge_foreground = background
|
||||||
|
|
||||||
|
local title = tab_title(tab)
|
||||||
|
|
||||||
|
-- ensure that the titles fit in the available space,
|
||||||
|
-- and that we have room for the edges.
|
||||||
|
title = wezterm.truncate_right(title, max_width - 2)
|
||||||
|
|
||||||
|
return {
|
||||||
|
{ Background = { Color = edge_background } },
|
||||||
|
{ Foreground = { Color = edge_foreground } },
|
||||||
|
{ Text = TAB_EDGE_LEFT },
|
||||||
|
{ Background = { Color = background } },
|
||||||
|
{ Foreground = { Color = foreground } },
|
||||||
|
{ Text = title },
|
||||||
|
{ Background = { Color = edge_background } },
|
||||||
|
{ Foreground = { Color = edge_foreground } },
|
||||||
|
{ Text = TAB_EDGE_RIGHT },
|
||||||
|
}
|
||||||
|
end
|
||||||
|
)
|
||||||
|
|
||||||
|
config.colors = {
|
||||||
|
tab_bar = {
|
||||||
|
active_tab = {
|
||||||
|
bg_color = title_color_bg:lighten(0.03),
|
||||||
|
fg_color = title_color_fg:lighten(0.8),
|
||||||
|
intensity = "Bold",
|
||||||
|
},
|
||||||
|
inactive_tab = {
|
||||||
|
bg_color = title_color_bg:lighten(0.01),
|
||||||
|
fg_color = title_color_fg,
|
||||||
|
intensity = "Half",
|
||||||
|
},
|
||||||
|
inactive_tab_edge = title_color_bg
|
||||||
|
},
|
||||||
|
split = title_color_bg:lighten(0.3):desaturate(0.5)
|
||||||
|
}
|
||||||
|
|
||||||
|
config.window_background_opacity = 0.9
|
||||||
|
config.window_frame = {
|
||||||
|
active_titlebar_bg = title_color_bg,
|
||||||
|
inactive_titlebar_bg = title_color_bg,
|
||||||
|
font_size = 10.0,
|
||||||
|
}
|
||||||
|
|
||||||
|
config.window_decorations = 'RESIZE'
|
||||||
|
config.win32_system_backdrop = "Disable"
|
||||||
|
config.show_tab_index_in_tab_bar = false
|
||||||
|
config.show_new_tab_button_in_tab_bar = false
|
||||||
|
|
||||||
|
config.color_scheme = 'Argonaut (Gogh)'
|
||||||
|
|
||||||
config.font = wezterm.font 'JetBrains Mono'
|
config.font = wezterm.font 'JetBrains Mono'
|
||||||
-- terminal padding
|
|
||||||
config.window_padding = {
|
config.window_padding = {
|
||||||
left = 0,
|
left = 0,
|
||||||
right = 0,
|
right = 0,
|
||||||
top = 0,
|
top = 0,
|
||||||
bottom = 0,
|
bottom = 0,
|
||||||
}
|
}
|
||||||
config.use_fancy_tab_bar = false
|
config.use_fancy_tab_bar = true
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = false
|
||||||
|
config.tab_bar_at_bottom = true
|
||||||
|
config.tab_max_width=24
|
||||||
|
|
||||||
config.inactive_pane_hsb = {
|
config.inactive_pane_hsb = {
|
||||||
saturation = 0.6,
|
saturation = 0.6,
|
||||||
brightness = 0.8,
|
brightness = 0.8,
|
||||||
}
|
}
|
||||||
|
|
||||||
config.quick_select_alphabet = "asdfqweryxcvjkluiopmghtzbn"
|
config.quick_select_alphabet = "asdfqweryxcvjkluiopmghtzbn"
|
||||||
|
config.scrollback_lines = 9001
|
||||||
|
|
||||||
-- WSL
|
-- WSL
|
||||||
if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
if wezterm.target_triple == 'x86_64-pc-windows-msvc' then
|
||||||
config.default_domain = 'WSL:Debian'
|
config.default_domain = 'WSL:Debian'
|
||||||
end
|
end
|
||||||
|
|
||||||
-- and finally, return the configuration to wezterm
|
|
||||||
return config
|
return config
|
||||||
|
102
.zshrc
102
.zshrc
@ -2,25 +2,27 @@
|
|||||||
# .zshrc - started by panki on 20200226
|
# .zshrc - started by panki on 20200226
|
||||||
#
|
#
|
||||||
|
|
||||||
|
fpath+=($HOME/.zsh/pure)
|
||||||
|
|
||||||
autoload -Uz compinit promptinit
|
autoload -Uz compinit promptinit
|
||||||
autoload -z edit-command-line
|
autoload -z edit-command-line
|
||||||
zle -N edit-command-line
|
zle -N edit-command-line
|
||||||
compinit
|
compinit
|
||||||
promptinit
|
promptinit
|
||||||
|
|
||||||
# This will set the default prompt to the fade theme
|
# fix background color being black...
|
||||||
prompt fade green
|
PS1=${PS1//\%K{black}/%k}
|
||||||
|
|
||||||
# Return Code on right prompt
|
# Return Code on right prompt
|
||||||
RPS1='[%F{yellow}%?%f]'
|
RPS1='[%F{yellow}%?%f]'
|
||||||
|
|
||||||
# history stuff
|
# history stuff
|
||||||
HISTFILE=~/.histfile
|
HISTSIZE=9000
|
||||||
HISTSIZE=1000
|
SAVEHIST=9000
|
||||||
SAVEHIST=1000
|
|
||||||
setopt appendhistory
|
setopt appendhistory
|
||||||
bindkey -e
|
bindkey -e
|
||||||
|
|
||||||
|
path+=('/home/panki/.local/bin')
|
||||||
|
|
||||||
|
|
||||||
# thanks to slashbeast for these ones
|
# thanks to slashbeast for these ones
|
||||||
@ -40,41 +42,61 @@ cd() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_git_prompt() {
|
alias sudo='sudo --preserve-env=HOME'
|
||||||
if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
|
||||||
unset git_prompt
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
local git_status_dirty git_branch
|
|
||||||
|
|
||||||
if [ "$(git status --untracked-files='no' --porcelain)" ]; then
|
|
||||||
git_status_dirty='%F{green}*'
|
|
||||||
else
|
|
||||||
unset git_status_dirty
|
|
||||||
fi
|
|
||||||
|
|
||||||
git_branch="$(git symbolic-ref HEAD 2>/dev/null)"
|
|
||||||
git_branch="${git_branch#refs/heads/}"
|
|
||||||
|
|
||||||
if [ "${#git_branch}" -ge 24 ]; then
|
|
||||||
git_branch="${git_branch:0:21}..."
|
|
||||||
fi
|
|
||||||
|
|
||||||
git_branch="${git_branch:-no branch}"
|
|
||||||
|
|
||||||
git_prompt=" %F{blue}[%F{253}${git_branch}${git_status_dirty}%F{blue}]"
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
precmd() {
|
|
||||||
setup_git_prompt
|
|
||||||
}
|
|
||||||
|
|
||||||
PS1='%F{green}%B%K{green}█▓▒░%F{white}%K{green}%B%n@%m%b%F{green}%K{black}█▓▒░%F{white}%K{black}%B %D{%a %b %d} %D{%I:%M:%S%P}
|
|
||||||
%}%F{green}%K{black}%B%~/%b%k${git_prompt}%f '
|
|
||||||
# aliases
|
|
||||||
alias grep='grep --colour=auto'
|
alias grep='grep --colour=auto'
|
||||||
|
alias ls='ls --color=auto'
|
||||||
alias ll='ls -alFh'
|
alias ll='ls -alFh'
|
||||||
|
alias vi='nvim'
|
||||||
|
alias vim='vi'
|
||||||
|
alias devel='cd /mnt/c/devel'
|
||||||
|
alias desk='cd /mnt/c/Users/PankratzF/Desktop'
|
||||||
|
alias e='explorer.exe .'
|
||||||
|
alias nmap='/mnt/c/Program\ Files\ \(x86\)/Nmap/nmap.exe'
|
||||||
|
alias sudo='sudo '
|
||||||
|
alias ds='dig +short'
|
||||||
|
alias kw='date +%V'
|
||||||
lt () { ls -lt ${1} | head }
|
lt () { ls -lt ${1} | head }
|
||||||
EDITOR=vim
|
|
||||||
|
# define slash and underscore as word separators
|
||||||
|
WORDCHARS=${WORDCHARS/\/}
|
||||||
|
WORDCHARS=${WORDCHARS/_}
|
||||||
|
|
||||||
|
# vi stuff
|
||||||
|
if [[ "$(command -v nvim)" ]]; then
|
||||||
|
export EDITOR='nvim'
|
||||||
|
export MANPAGER='nvim +Man!'
|
||||||
|
export MANWIDTH=999
|
||||||
|
fi
|
||||||
|
|
||||||
|
# jump to man flag
|
||||||
|
function fman () { man -P "less -p \"^ +$2\"" $1 }
|
||||||
|
|
||||||
|
# fzf stuff
|
||||||
|
export FZF_TMUX=1
|
||||||
|
export FZF_DEFAULT_OPTS='--height 40%'
|
||||||
|
export FZF_COMPLETION_TRIGGER='~~'
|
||||||
|
source /usr/share/doc/fzf/examples/key-bindings.zsh
|
||||||
|
alias fp='fzf --preview "bat --style=numbers --color=always --line-range :500 {}"'
|
||||||
|
|
||||||
|
# cheat - display text reminders
|
||||||
|
function cheat() {
|
||||||
|
bat -l md -p ~/cheat/"$1"
|
||||||
|
}
|
||||||
|
compdef '_files -W "/home/panki/cheat"' cheat
|
||||||
|
|
||||||
|
# tokens etc
|
||||||
|
source ~/.exports
|
||||||
|
|
||||||
|
# wezterm
|
||||||
|
source ~/.zsh/wezterm.sh
|
||||||
|
# This will set the default prompt to the fade theme
|
||||||
|
if [[ $UID -eq 0 ]]; then
|
||||||
|
HISTFILE="${HISTFILE%_history}_root_history"
|
||||||
|
prompt fade red
|
||||||
|
else
|
||||||
|
HISTFILE=~/.histfile
|
||||||
|
prompt pure
|
||||||
|
fi
|
||||||
|
ICONS=(😈 💀 🤡 👻 👽 👾 🤖 😺 💋 💥 🦥 🐣 🐧 🐸 🐢 🐍 🐳 🌴 🍉 🍎 🍒 🥝 🥥 🥨 🍕 ☕ 🚨 🚀 🛸 🪐 🌠 🌙 🌞 🌈 ⚡ 🔥 💧 ✨ 🎉 💎 💾 📎 💣 📡 )
|
||||||
|
export PURE_PROMPT_SYMBOL="$(shuf -n1 -e "${ICONS[@]}")"
|
||||||
|
__wezterm_set_user_var "ICON" $PURE_PROMPT_SYMBOL
|
||||||
|
Loading…
Reference in New Issue
Block a user