This commit is contained in:
Daniel Lundin 2021-10-21 16:29:20 +02:00
parent 90945969d8
commit be18b613ee
5 changed files with 21 additions and 4 deletions

View file

@ -185,6 +185,15 @@ return require('packer').startup(function()
end
}
-- use {
-- "marko-cerovac/material.nvim",
-- config = function()
-- vim.g.material_style = 'lighter'
-- vim.g.material_lighter_contrast = true
-- require('material').set()
-- end
-- }
use {
"cuducos/yaml.nvim",
ft = {"yaml"},

View file

@ -1,13 +1,15 @@
add_newline = false
format = """\
$hostname\
$directory\
($character)\
"""
[character]
success_symbol = "%%"
error_symbol = "[%%](bold red)"
success_symbol = "%"
error_symbol = "[%](bold red)"
[line_break]
disabled = true

View file

@ -1,6 +1,8 @@
[core]
excludesfile = "~/.gitignore"
pager = delta --line-numbers
compression = 0
looseCompression = 0
[user]
useConfigOnly = true

View file

@ -7,5 +7,4 @@ TryExec=/usr/bin/wezterm
Icon=org.wezfurlong.wezterm
Terminal=false
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

7
.zshrc
View file

@ -142,7 +142,7 @@ export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
eval "$(direnv hook zsh)"
## 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
## linkerd
@ -203,3 +203,8 @@ export PATH=$HOME/bin:$PATH
autoload -Uz compinit
compinit -i
## AWS
if [ -x /usr/bin/aws_zsh_completer.sh ]; then
source /usr/bin/aws_zsh_completer.sh
fi