clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add newest changes and tmux

sspaeti f4fcc14a f1c30fb1

+38 -26
-25
Brewfile
··· 1 - tap "adoptopenjdk/openjdk" 2 - tap "homebrew/bundle" 3 - tap "homebrew/cask" 4 - tap "homebrew/cask-versions" 5 - tap "homebrew/core" 6 - tap "minio/stable" 7 - tap "osx-cross/arm" 8 - tap "osx-cross/avr" 9 - tap "qmk/qmk" 10 - brew "bash-completion" 11 - brew "docker", link: false 12 - brew "docker-machine" 13 - brew "hugo" 14 - brew "neovim" 15 - brew "pandoc" 16 - brew "python@3.8", link: true 17 - brew "tmux" 18 - brew "wget" 19 - brew "zsh-autosuggestions" 20 - brew "zsh-syntax-highlighting" 21 - brew "minio/stable/mc" 22 - brew "minio/stable/minio" 23 - brew "qmk/qmk/qmk" 24 - cask "adoptopenjdk11" 25 - cask "mark-text"
alfred/Obsidian.alfredworkflow

This is a binary file and will not be displayed.

+3
backup_dotfiles.sh
··· 9 9 cp -r ~/.config/nvim/autoload $git/general/dotfiles/nvim/autoload 10 10 cp -r ~/.aliases.shrc $git/general/dotfiles/zsh/aliases.shrc 11 11 12 + cp -r ~/.tmux.conf $git/general/dotfiles/tmux/tmux.conf 13 + cp -r ~/ide.sh $git/general/dotfiles/tmux/ide.sh 14 + 12 15 brew bundle dump > $git/general/dotfiles/Brewfile -f 13 16 14 17 source $venvs/dagster/bin/activate
+4
tmux/ide.sh
··· 1 + #!/bin/bash 2 + tmux split-window -v -p 30 3 + tmux split-window -h -p 66 4 + tmux split-window -h -p 50
+19
tmux/tmux.conf
··· 1 + #use zsh as default 2 + set-option -g default-shell /bin/zsh 3 + #set-option -g default-shell /usr/local/bin/zsh 4 + set -g default-terminal "screen-256color" 5 + 6 + # Change default prefix key 7 + unbind C-b 8 + set-option -g prefix C-t 9 + set-option -g repeat-time 0 10 + 11 + 12 + set-window-option -g mode-keys vi 13 + 14 + 15 + #vim-like pane switching 16 + bind -r k select-pane -U 17 + bind -r j select-pane -D 18 + bind -r h select-pane -L 19 + bind -r l select-pane -R
+8
vscode/keybindings.json
··· 147 147 { 148 148 "key": "ctrl+[Minus]", 149 149 "command": "workbench.action.closePanel" 150 + }, 151 + { 152 + "key": "alt+[BracketRight]", 153 + "command": "editor.action.inlineSuggest.showNext" 154 + }, 155 + { 156 + "key": "alt+[BracketLeft]", 157 + "command": "editor.action.inlineSuggest.showPrevious" 150 158 } 151 159 ]
+4 -1
vscode/settings.json
··· 240 240 "<C-f>": false 241 241 }, 242 242 "editor.lineNumbers": "relative", 243 - "window.zoomLevel": 1 243 + "window.zoomLevel": 1, 244 + "redhat.telemetry.enabled": false, 245 + "editor.inlineSuggest.enabled": true, 246 + "security.workspace.trust.untrustedFiles": "open" 244 247 }