Skip to content

Instantly share code, notes, and snippets.

View kimworks's full-sized avatar

KimWorks LLC kimworks

View GitHub Profile
@kimworks
kimworks / .tmux.conf
Created July 17, 2025 09:55
tmux configuration, compatible with my .screenrc
##### 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
#!/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
@kimworks
kimworks / .screenrc
Created November 10, 2023 17:57
.screenrc
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"
@kimworks
kimworks / .vimrc
Created January 4, 2018 04:40
vim configuration
colorscheme ron
set nu
set ai
set tabstop=4
set ruler
set laststatus=2
set showmode
set expandtab
let loaded_matchparen=1
syntax on