Compare commits

...

2 commits

Author SHA1 Message Date
57046ccf3e
more niceties 2023-05-18 10:44:39 -05:00
da32c832cb
add more treesitter 2023-05-18 10:44:30 -05:00
3 changed files with 3 additions and 0 deletions

View file

@ -58,6 +58,7 @@ return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
opts = function(_, opts) opts = function(_, opts)
opts.ignore_install = { "help" } opts.ignore_install = { "help" }
opts.ensure_installed = { "jsonnet" }
end, end,
}, },
} }

View file

@ -20,3 +20,4 @@ echo "-----------------------------"
gen pdm completion zsh gen pdm completion zsh
gen chezmoi completion zsh gen chezmoi completion zsh
gen rye self completion -s zsh gen rye self completion -s zsh
gen gh completion -s zsh

View file

@ -38,4 +38,5 @@ alias zdot='cd ${ZDOTDIR:-~}'
alias dots='cd ${DOTFILES_DIR:-~/.dotfiles}' alias dots='cd ${DOTFILES_DIR:-~/.dotfiles}'
alias today="date +'%Y-%m-%d'" alias today="date +'%Y-%m-%d'"
alias dots-drop='chezmoi forget --interactive $(chezmoi managed -p absolute | fzf)' alias dots-drop='chezmoi forget --interactive $(chezmoi managed -p absolute | fzf)'
alias dots-add='chezmoi re-add --interactive'