aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/aliases/dev.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'config/zsh/aliases/dev.zsh')
-rw-r--r--config/zsh/aliases/dev.zsh2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/zsh/aliases/dev.zsh b/config/zsh/aliases/dev.zsh
index d0398ea..6689b51 100644
--- a/config/zsh/aliases/dev.zsh
+++ b/config/zsh/aliases/dev.zsh
@@ -36,6 +36,7 @@ calc() {
get_node_script_runner() {
if [[ -f ./yarn.json ]]; then echo "yarn";
+ elif [[ -f ./bun.lockb ]]; then echo "bun run";
elif [[ -f ./pnpm-lock.yaml ]]; then echo "pnpm";
else echo "npm run"; fi;
}
@@ -66,6 +67,7 @@ vt() {
nvim +term \
+'norm i' \
+"lua vim.fn.feedkeys([[$1]])" \
+ +'lua vim.go.termguicolors = false' \
+'set nonumber norelativenumber signcolumn=no' \
+'autocmd TermClose * execute "qa"' \
+'hi @_phenax.term-title guibg=#1a1824 guifg=#8e7ae3 gui=bold' \