(Written in the middle of the night, will be updated)
Bullet points for now:
create ~/.tmux.conf:
~/.tmux.conf
# Enable switching panes with ALT + arrow keysbind -n M-Left select-pane -Lbind -n M-Right select-pane -Rbind -n M-Up select-pane -Ubind -n M-Down select-pane -D # List of pluginsset -g @plugin 'tmux-plugins/tpm'set -g @plugin 'tmux-plugins/tmux-sensible'set -g @plugin 'catppuccin/tmux'set -g @plugin 'laktak/tome'set -g @plugin 'tmux-plugins/tmux-resurrect' # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)run '~/.tmux/plugins/tpm/tpm'
create ~/.vimrc:
~/.vimrc
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'if empty(glob(data_dir . '/autoload/plug.vim')) silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' autocmd VimEnter * PlugInstall --sync | source $MYVIMRCendifcall plug#begin() " List your plugins herePlug 'tpope/vim-sensible'Plug 'laktak/tome' call plug#end()