initial commit

This commit is contained in:
2025-10-19 23:38:08 +02:00
commit 36eb210b52
2 changed files with 56 additions and 0 deletions

17
tmux.conf Normal file
View File

@@ -0,0 +1,17 @@
# TMUX configuration for using tmux as an IDE
# This file contains a minimal configuration and diffent layout.
# enable the mouse mode
set -g mouse on
# Use xclop to copy and paste with the system clipboard
bind C-c run "tmux save-buffer - | xclip -i sel clip"
bind C-v run "tmux set-buffer ${xclip -o sel clip}; tmux paste-buffer"
# Configure the plugin manager
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'