Merge branch 'main' of git.clustercockpit.org:moebiusband/dotfiles

This commit is contained in:
Jan Eitzinger 2024-01-24 07:07:19 +01:00
commit af354d3516
4 changed files with 22 additions and 1 deletions

View File

@ -8,3 +8,16 @@ vim.api.nvim_create_autocmd("FileType", {
vim.opt_local.spell = true vim.opt_local.spell = true
end, 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,
})

View File

@ -1,3 +1,4 @@
command_timeout = 10000
[golang] [golang]
symbol = " " symbol = " "

View File

@ -95,8 +95,10 @@ set -g @catppuccin_directory_text "#{pane_current_path}"
# List of plugins # List of plugins
set -g @plugin 'tmux-plugins/tmux-pain-control' set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-logging' 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 'olimorris/tmux-pomodoro-plus'
set -g @plugin "jlipps/tmux-safekill" set -g @plugin 'jlipps/tmux-safekill'
set -g @plugin 'catppuccin/tmux' set -g @plugin 'catppuccin/tmux'
{{- if eq .chezmoi.os "openbsd" }} {{- if eq .chezmoi.os "openbsd" }}
set -g @plugin 'tmux-plugins/tmux-battery' set -g @plugin 'tmux-plugins/tmux-battery'

View File

@ -20,6 +20,11 @@ export KEYTIMEOUT=1
plugins={{ .plugins }} plugins={{ .plugins }}
#chezmoi aliases
alias ccd= 'chezmoi cd'
alias cdi= 'chezmoi diff'
alias cap= 'chezmoi apply'
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
export PATH=/usr/local/bin:/usr/local/sbin:$PATH export PATH=/usr/local/bin:/usr/local/sbin:$PATH