Compare commits

..

2 Commits

Author SHA1 Message Date
ad27cf27bb More database integration 2025-10-16 12:13:21 +10:00
e059380f45 Switch to nvim as default text editor in terminal 2025-10-16 12:12:52 +10:00
2 changed files with 7 additions and 4 deletions

View File

@ -60,6 +60,8 @@ local plugins = {
-- Tools -- Tools
{"db", "vim-dadbod", "https://github.com/tpope/vim-dadbod.git"}, {"db", "vim-dadbod", "https://github.com/tpope/vim-dadbod.git"},
{"db", "vim-dadbod-completion", "https://github.com/kristijanhusak/vim-dadbod-completion.git"},
{"db", "vim-dadbod-ui", "https://github.com/kristijanhusak/vim-dadbod-ui.git"},
{"env", "dotenv", "https://github.com/tpope/vim-dotenv"}, {"env", "dotenv", "https://github.com/tpope/vim-dotenv"},
-- Quality of life -- Quality of life

9
.zshrc
View File

@ -105,10 +105,11 @@ zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zsh/cache zstyle ':completion:*' cache-path ~/.zsh/cache
zstyle ':completion:*' menu no zstyle ':completion:*' menu no
export EDITOR='bbedit --wait --resume' export EDITOR='nvim'
export GIT_EDITOR='bbedit --wait --resume' export GIT_EDITOR='nvim'
export TEXEDIT='bbedit --wait --resume' export TEXEDIT='nvim'
export LESSEDIT='bbedit --wait --resume' export LESSEDIT='nvim'
export VISUAL='nvim'
### ENV CONFIG ### ENV CONFIG
export PATH="${HOME}/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:${HOME}/.cargo/bin:/opt/homebrew/opt/rustup/bin:/Applications/IntelliJ IDEA.app/Contents/MacOS:/usr/local/bin:${GOROOT}/bin:$PATH" export PATH="${HOME}/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:${HOME}/.cargo/bin:/opt/homebrew/opt/rustup/bin:/Applications/IntelliJ IDEA.app/Contents/MacOS:/usr/local/bin:${GOROOT}/bin:$PATH"