Tmux Held Me Hostage and I Got Stockholm Syndrome Instead

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • tpm

    Tmux Plugin Manager

  • # Check if ~/.tmux directory exists, if not, clone TPM if-shell "[ ! -d ~/.tmux ]" \ "run-shell 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm'" # Check if xclip is installed when tmux starts if-shell '! command -v xclip >/dev/null 2>&1'\ 'display-message "Warning: xclip is not installed.\ Please install it for better copy-paste functionality in tmux.\ You can install xclip using your package manager. For example, on Debian/Ubuntu: sudo apt-get install xclip"' # Set terminal to true colors set -g default-terminal "tmux-256color" set-option -sa terminal-overrides ".xterm*:Tc" # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'dracula/tmux' set -g @plugin 'christoomey/vim-tmux-navigator' # set -g @plugin 'tmux-plugins/tmux-yank' # Dracula plugins setting # available plugins: battery, cpu-usage, git, gpu-usage, ram-usage, tmux-ram-usage, network, network-bandwidth, network-ping, ssh-session, attached-clients, network-vpn, weather, time, mpc, spotify-tui, kubernetes-context, synchronize-panes set -g @dracula-plugins "cpu-usage gpu-usage ram-usage time" set -g @dracula-show-left-icon session # Rebind prefix key to Ctrl+Space unbind C-b set-option -g prefix C-s # Rebind the splits unbind % bind | split-window -h unbind '"' bind - split-window -v # Add mouse support set -g mouse on # In order to enable tmux-yank # set-option -g default-command "reattach-to-user-namespace -l $SHELL" # Copy and Paste on Linux bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard" bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -selection clipboard -i" set-option -s set-clipboard off # set clipboard to on # set -g set-clipboard on # vi keymode setw -g mode-keys vi # start windows and panes from 1, not 0 set -g base-index 1 set -g pane-base-index 1 set-window-option -g pane-base-index 1 set-option -g renumber-windows on # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm'

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts