onward!
This commit is contained in:
parent
90945969d8
commit
be18b613ee
5 changed files with 21 additions and 4 deletions
|
@ -185,6 +185,15 @@ return require('packer').startup(function()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- use {
|
||||||
|
-- "marko-cerovac/material.nvim",
|
||||||
|
-- config = function()
|
||||||
|
-- vim.g.material_style = 'lighter'
|
||||||
|
-- vim.g.material_lighter_contrast = true
|
||||||
|
-- require('material').set()
|
||||||
|
-- end
|
||||||
|
-- }
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"cuducos/yaml.nvim",
|
"cuducos/yaml.nvim",
|
||||||
ft = {"yaml"},
|
ft = {"yaml"},
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
add_newline = false
|
add_newline = false
|
||||||
|
|
||||||
format = """\
|
format = """\
|
||||||
|
$hostname\
|
||||||
$directory\
|
$directory\
|
||||||
($character)\
|
($character)\
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
[character]
|
[character]
|
||||||
success_symbol = "%%"
|
success_symbol = "%"
|
||||||
error_symbol = "[%%](bold red)"
|
error_symbol = "[%](bold red)"
|
||||||
|
|
||||||
[line_break]
|
[line_break]
|
||||||
disabled = true
|
disabled = true
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
[core]
|
[core]
|
||||||
excludesfile = "~/.gitignore"
|
excludesfile = "~/.gitignore"
|
||||||
pager = delta --line-numbers
|
pager = delta --line-numbers
|
||||||
|
compression = 0
|
||||||
|
looseCompression = 0
|
||||||
|
|
||||||
[user]
|
[user]
|
||||||
useConfigOnly = true
|
useConfigOnly = true
|
||||||
|
|
|
@ -7,5 +7,4 @@ TryExec=/usr/bin/wezterm
|
||||||
Icon=org.wezfurlong.wezterm
|
Icon=org.wezfurlong.wezterm
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=System;TerminalEmulator;
|
Categories=System;TerminalEmulator;
|
||||||
#Exec=/usr/bin/wezterm --config 'default_prog={"ssh", "dln-dev", "tmux", "-u", "new", "-As0"}' start --class=wezterm-dln-dev
|
|
||||||
Exec=/usr/bin/wezterm --config 'default_prog={"autossh", "-M0", "-q", "dln-dev", "--", "tmux", "-u", "new", "-As0"}' start --class=wezterm-dln-dev
|
Exec=/usr/bin/wezterm --config 'default_prog={"autossh", "-M0", "-q", "dln-dev", "--", "tmux", "-u", "new", "-As0"}' start --class=wezterm-dln-dev
|
||||||
|
|
7
.zshrc
7
.zshrc
|
@ -142,7 +142,7 @@ export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
|
||||||
eval "$(direnv hook zsh)"
|
eval "$(direnv hook zsh)"
|
||||||
|
|
||||||
## Kubernetes
|
## Kubernetes
|
||||||
command -v kubectl >/dev/null 2>&1 && source <(kubectl completion zsh)
|
command -v kubectl >/dev/null 2>&1 && kubectl completion zsh > "${fpath[1]}/_kubectl"
|
||||||
export PATH=$HOME/.krew/bin:$PATH
|
export PATH=$HOME/.krew/bin:$PATH
|
||||||
|
|
||||||
## linkerd
|
## linkerd
|
||||||
|
@ -203,3 +203,8 @@ export PATH=$HOME/bin:$PATH
|
||||||
autoload -Uz compinit
|
autoload -Uz compinit
|
||||||
compinit -i
|
compinit -i
|
||||||
|
|
||||||
|
## AWS
|
||||||
|
if [ -x /usr/bin/aws_zsh_completer.sh ]; then
|
||||||
|
source /usr/bin/aws_zsh_completer.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue