Collection for configurations for the following
- Iterm
- ZSH
- Nvim
- Code searching with ctags
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install wget fzf ack the_silver_searcher git \
thefuck reattach-to-user-namespace node java \
ripgrep fd zsh-autosuggestions rbenv lazygit luarocks \
mise
mise install aws-vault
git clone [email protected]:rcclemente/dotfiles.git ~/dotfiles
mkdir ~/.config
Bartender alternative
brew install --cask dozer
- Download at [Context: "https://www.iterm2.com/downloads.html"]
cd ~
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
- Download the theme
git clone https://github.com/dracula/iterm.git ~/iterm_dracula
- Configure iterm
- iTerm2 > Preferences > Profiles > Colors Tab
- Open the Color Presets... drop-down in the bottom right corner
- Select Import... from the list
- Select the Dracula.itermcolors file from ~/iterm_dracula
- Select the Dracula from Color Presets...
- Delete
rm -rf ~/iterm_dracula
- Use Nerdfonts
brew tap homebrew/cask-fonts
brew install font-hasklug-nerd-font
brew install font-jetbrains-mono-nerd-font
brew install font-hack-nerd-font
-- download all
https://gist.github.com/davidteren/898f2dcccd42d9f8680ec69a3a5d350e
- Powerline fonts
cd ~
git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
cd ..
rm -rf fonts
- Switch to zsh
chsh -s /bin/zsh
- Download [Context: "https://github.com/ohmyzsh/ohmyzsh#getting-started"]
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Install Theme - https://github.com/romkatv/powerlevel10k#manual
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
ln -s ~/dotfiles/zshrc .zshrc
optional:
Set `ZSH_THEME="powerlevel10k/powerlevel10k"` in `~/.zshrc`.
Configure
p10k configure
brew install tmux
rm ~/.tmux.conf
ln -s dotfiles/tmux.conf ~/.tmux.conf
brew install neovim
mkdir ~/.config
ln -s dotfiles/nvim ~/.config/
cd ~
git clone https://github.com/flazz/vim-colorschemes.git
cp -R vim-colorschemes/colors dotfiles/nvim/
rm -rf vim-colorschemes
curl -fLo $HOME/.config/nvim/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
- Install
brew install ctags
- Create the tags for your local ruby/rails project
ctags --exclude=log --exclude=.git --recurse . `bundle show --paths` ``
-
Download command line tools https://developer.apple.com/download/more/
-
Switch to the right commandline tools(should have been downloaded in the apple developer site)
sudo xcode-select --switch /Library/Developer/CommandLineTools
sudo gem install solargraph
- And then restore afterwards with
sudo xcode-select --switch /Applications/Xcode.app
- Inside nvim
:PlugInstall
:CocInstall coc-solargraph coc-css coc-html coc-json coc-tsserver
- After install inside nvim
:source %
:PluginInstall
:call mkdp#util#install()
git config --global core.editor "nvim"
https://raw.githubusercontent.com/rcclemente/dotfiles/master/tmux.conf