mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-22 08:56:00 +00:00
feat(nvim): Switched from brew nvim to bob-nvim
This commit is contained in:
@@ -200,8 +200,6 @@ brew "m-cli"
|
|||||||
brew "mas"
|
brew "mas"
|
||||||
# NCurses Disk Usage
|
# NCurses Disk Usage
|
||||||
brew "ncdu"
|
brew "ncdu"
|
||||||
# Ambitious Vim-fork focused on extensibility and agility
|
|
||||||
brew "neovim"
|
|
||||||
# HTTP(S) server and reverse proxy, and IMAP/POP3 proxy server
|
# HTTP(S) server and reverse proxy, and IMAP/POP3 proxy server
|
||||||
brew "nginx"
|
brew "nginx"
|
||||||
# Port scanning utility for large networks
|
# Port scanning utility for large networks
|
||||||
|
|||||||
@@ -19,9 +19,14 @@ packages=(
|
|||||||
"eza"
|
"eza"
|
||||||
# A simple, fast and user-friendly alternative to 'find'
|
# A simple, fast and user-friendly alternative to 'find'
|
||||||
"fd-find"
|
"fd-find"
|
||||||
|
# A cargo subcommand for checking and applying
|
||||||
|
# updates to installed executables
|
||||||
"cargo-update"
|
"cargo-update"
|
||||||
"pijul"
|
# recursively searches directories for a
|
||||||
|
# regex pattern while respecting your gitignore
|
||||||
"ripgrep"
|
"ripgrep"
|
||||||
|
# A version manager for neovim
|
||||||
|
"bob-nvim"
|
||||||
)
|
)
|
||||||
|
|
||||||
for pkg in "${packages[@]}"; do
|
for pkg in "${packages[@]}"; do
|
||||||
@@ -35,3 +40,14 @@ for pkg in "${packages[@]}"; do
|
|||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
done
|
done
|
||||||
|
|
||||||
|
msg_done "Installed cargo packages!"
|
||||||
|
|
||||||
|
msg_run "Now doing the next steps for cargo packages"
|
||||||
|
|
||||||
|
# use bob to install nvim
|
||||||
|
have bob && {
|
||||||
|
bob use stable && path_append "$XDG_DATA_HOME/bob/nvim-bin"
|
||||||
|
}
|
||||||
|
|
||||||
|
msg_done "All next steps done!"
|
||||||
|
|||||||
Reference in New Issue
Block a user