Refactor names
This commit is contained in:
2
installs_and_builds/fzf
Executable file
2
installs_and_builds/fzf
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/zsh
|
||||
brew install fzf
|
2
installs_and_builds/git
Executable file
2
installs_and_builds/git
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/zsh
|
||||
brew install git
|
6
installs_and_builds/libs
Executable file
6
installs_and_builds/libs
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/zsh
|
||||
|
||||
local lua_package="lua5.1"
|
||||
[[ "$BOX_SETUP_OS" = "macos" ]] && lua_package="lua@5.1"
|
||||
|
||||
$BOX_SETUP_INSTALL_COMMAND cmake gettext "$lua_package" liblua5.1-0-dev
|
3
installs_and_builds/neovim
Executable file
3
installs_and_builds/neovim
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/zsh
|
||||
|
||||
brew install neovim
|
28
installs_and_builds/neovim_from_source
Executable file
28
installs_and_builds/neovim_from_source
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/zsh
|
||||
|
||||
# local neovim_dir=$HOME/.local/build/neovim
|
||||
# local neovim_version="v0.10.3"
|
||||
# [ ! -z $NVIM_VERSION ] && neovim_version="$NVIM_VERSION"
|
||||
# echo "neovim_version: \"$neovim_version\""
|
||||
#
|
||||
# [ ! -d $neovim_dir ] && git clone https://github.com/neovim/neovim.git $neovim_dir
|
||||
# git -C $neovim_dir fetch --all
|
||||
# git -C $neovim_dir checkout $neovim_version
|
||||
#
|
||||
#
|
||||
# make -C $neovim_dir clean
|
||||
# make -C $neovim_dir CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
# sudo make -C $neovim_dir install
|
||||
|
||||
# lines below from primeagen's dev repo, uncomment/edit as needed
|
||||
# git clone https://github.com/ThePrimeagen/harpoon.git $HOME/personal/harpoon
|
||||
# cd $HOME/personal/harpoon
|
||||
# git fetch
|
||||
# git checkout harpoon2
|
||||
|
||||
# git clone https://github.com/ThePrimeagen/vim-apm.git $HOME/personal/vim-apm
|
||||
# git clone https://github.com/ThePrimeagen/vim-with-me.git $HOME/personal/vim-with-me
|
||||
# git clone https://github.com/ThePrimeagen/vim-arcade.git $HOME/personal/vim-arcade
|
||||
# git clone https://github.com/ThePrimeagen/caleb.git $HOME/personal/caleb
|
||||
# git clone https://github.com/nvim-lua/plenary.nvim.git $HOME/personal/plenary
|
||||
|
2
installs_and_builds/tmux
Executable file
2
installs_and_builds/tmux
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/zsh
|
||||
brew install tmux
|
5
installs_and_builds/utils
Executable file
5
installs_and_builds/utils
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/zsh
|
||||
|
||||
# likely on unix systems already: find xargs grep sed awk
|
||||
|
||||
brew install jq parallel
|
Reference in New Issue
Block a user