Compare commits

...

4 commits

3 changed files with 60 additions and 0 deletions

54
.Brewfile Normal file
View file

@ -0,0 +1,54 @@
tap "homebrew/autoupdate"
tap "homebrew/bundle"
tap "homebrew/services"
tap "nikitabobko/tap"
brew "btop"
brew "htop"
brew "cmake"
brew "coreutils", link: false
brew "dart-sdk", link: false
brew "duf"
brew "eza"
brew "fd"
brew "fzf"
brew "gcc"
brew "git"
brew "git-delta"
brew "git-lfs"
brew "lazygit"
brew "llvm"
brew "neovim"
brew "openjdk@17"
brew "openssh"
brew "ripgrep"
brew "rustup"
brew "shellcheck"
brew "texlive", link: false
brew "tmux"
brew "watch"
brew "wget"
cask "aerospace"
cask "bartender"
cask "discord"
cask "element"
cask "firefox"
cask "flameshot"
cask "font-fira-mono-nerd-font"
cask "font-jetbrains-mono-nerd-font"
cask "iina"
cask "karabiner-elements"
cask "mos"
cask "nextcloud"
cask "notchnook"
cask "obs"
cask "obs-ndi"
cask "obsidian"
cask "raycast"
cask "skim"
cask "stremio"
cask "thunderbird"
cask "wezterm"
cask "wireshark"
cask "zotero"
cask "bitwarden"
cask "wireguard-tools"

View file

@ -7,6 +7,7 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'sainnhe/tmux-fzf'
set -g @plugin 'niqodea/tmux-matryoshka'
#set -g @plugin 'tomhey/tmux-remote-sessions'
# Plugin settings

View file

@ -30,6 +30,11 @@ export PATH="$HOME/.ghcup/bin:$PATH"
export PATH="$HOME/.miniforge3/bin:$PATH"
export PATH="$HOME/.cabal/bin:$PATH"
#Android stuff
export ANDROID_HOME=~/android/sdk
export ANDROID_TOOLS_PATHS=$ANDROID_HOME/cmdline-tools/latest/bin:
export PATH=$ANDROID_TOOLS_PATHS:$PATH:
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_CACHE_HOME="${HOME}/.cache"
export XDG_DATA_HOME="${HOME}/.local/share"