This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### GENERAL SETTINGS ##### | |
# Use your login shell | |
set-option -g default-shell $SHELL | |
set-option -g default-command $SHELL | |
# Scrollback buffer size | |
set-option -g history-limit 50000 | |
# 256 colors support |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦" | |
echo "βΆοΈ Ubuntu account setup (2025-07-17)" | |
echo "π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦" | |
echo | |
APTGETSW="wget screen tree git fzf curl nnn mc lynx bat" | |
echo "π Install: $APTGETSW" | |
sudo apt-get -qq install $APTGETSW > /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell -$SHELL | |
startup_message off | |
defscrollback 50000 | |
# https://gist.github.com/ChrisWills/1337178 | |
attrcolor b ".I" | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' | |
defbce "on" | |
# https://www.gnu.org/software/screen/manual/html_node/String-Escapes.html#String-Escapes | |
# https://www.kilobitspersecond.com/2014/02/10/understanding-gnu-screens-hardstatus-strings/ | |
defbce "on" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
colorscheme ron | |
set nu | |
set ai | |
set tabstop=4 | |
set ruler | |
set laststatus=2 | |
set showmode | |
set expandtab | |
let loaded_matchparen=1 | |
syntax on |