Merge branch 'main' of git.clustercockpit.org:moebiusband/dotfiles
This commit is contained in:
commit
af354d3516
@ -8,3 +8,16 @@ vim.api.nvim_create_autocmd("FileType", {
|
||||
vim.opt_local.spell = true
|
||||
end,
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "markdown" },
|
||||
callback = function()
|
||||
vim.opt_local.textwidth = 80
|
||||
vim.opt_local.wrap = true
|
||||
vim.opt_local.spell = true
|
||||
vim.opt_local.tabstop = 2
|
||||
vim.opt_local.softtabstop = 2
|
||||
vim.opt_local.shiftwidth = 2
|
||||
vim.opt_local.expandtab = true
|
||||
end,
|
||||
})
|
||||
|
@ -1,3 +1,4 @@
|
||||
command_timeout = 10000
|
||||
|
||||
[golang]
|
||||
symbol = " "
|
||||
|
@ -95,8 +95,10 @@ set -g @catppuccin_directory_text "#{pane_current_path}"
|
||||
# List of plugins
|
||||
set -g @plugin 'tmux-plugins/tmux-pain-control'
|
||||
set -g @plugin 'tmux-plugins/tmux-logging'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
set -g @plugin 'olimorris/tmux-pomodoro-plus'
|
||||
set -g @plugin "jlipps/tmux-safekill"
|
||||
set -g @plugin 'jlipps/tmux-safekill'
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
{{- if eq .chezmoi.os "openbsd" }}
|
||||
set -g @plugin 'tmux-plugins/tmux-battery'
|
||||
|
@ -20,6 +20,11 @@ export KEYTIMEOUT=1
|
||||
|
||||
plugins={{ .plugins }}
|
||||
|
||||
#chezmoi aliases
|
||||
alias ccd= 'chezmoi cd'
|
||||
alias cdi= 'chezmoi diff'
|
||||
alias cap= 'chezmoi apply'
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
|
||||
|
Loading…
Reference in New Issue
Block a user