From fcf1f995fe61a880ca9d68590c84c8c3626a0c16 Mon Sep 17 00:00:00 2001 From: Michael Skrynski Date: Mon, 9 Mar 2026 12:00:50 +0100 Subject: [PATCH] cleanup --- config/git/ignore | 1 - gemrc | 1 - irbrc | 40 ----------------------- prettierrc | 5 --- rubocop.yml | 8 ----- tmux.conf_orig | 83 ----------------------------------------------- 6 files changed, 138 deletions(-) delete mode 100644 config/git/ignore delete mode 100644 gemrc delete mode 100644 irbrc delete mode 100644 prettierrc delete mode 100644 rubocop.yml delete mode 100644 tmux.conf_orig diff --git a/config/git/ignore b/config/git/ignore deleted file mode 100644 index 66d62f8..0000000 --- a/config/git/ignore +++ /dev/null @@ -1 +0,0 @@ -**/.claude/settings.local.json diff --git a/gemrc b/gemrc deleted file mode 100644 index 6153a6e..0000000 --- a/gemrc +++ /dev/null @@ -1 +0,0 @@ -gem: --no-ri --no-rdoc diff --git a/irbrc b/irbrc deleted file mode 100644 index a7356d7..0000000 --- a/irbrc +++ /dev/null @@ -1,40 +0,0 @@ -#$LOAD_PATH << File.expand_path('~/.ruby') - -# Make gems available -require 'rubygems' -require 'irb/completion' - -# Save history -IRB.conf[:SAVE_HISTORY] = 1500 -IRB.conf[:HISTORY_FILE] = File.expand_path('~/.irb_history') - -# Automatic Indentation -IRB.conf[:AUTO_INDENT] = true - -# Load the readline module. -IRB.conf[:USE_READLINE] = true - -# Remove the annoying irb(main):001:0 and replace with >> -IRB.conf[:PROMPT_MODE] = :SIMPLE - -begin - require 'interactive_editor' -rescue LoadError => err - warn "Couldn't load interactive_editor: #{err}" -end - -begin - require 'awesome_print' - AwesomePrint.irb! -rescue LoadError => err - warn "Couldn't load awesome_print: #{err}" -end - -script_console_running = ENV.include?('RAILS_ENV') && IRB.conf[:LOAD_MODULES] && IRB.conf[:LOAD_MODULES].include?('console_with_helpers') -rails_running = ENV.include?('RAILS_ENV') && !(IRB.conf[:LOAD_MODULES] && IRB.conf[:LOAD_MODULES].include?('console_with_helpers')) -irb_standalone_running = !script_console_running && !rails_running - -if script_console_running - require 'logger' - Object.const_set(:RAILS_DEFAULT_LOGGER, Logger.new(STDOUT)) -end diff --git a/prettierrc b/prettierrc deleted file mode 100644 index 49955e2..0000000 --- a/prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "semi": false, - "singleQuote": true, - "trailingComma": "none" -} diff --git a/rubocop.yml b/rubocop.yml deleted file mode 100644 index 7819eab..0000000 --- a/rubocop.yml +++ /dev/null @@ -1,8 +0,0 @@ -Style/Documentation: - Enabled: false - -Style/FrozenStringLiteralComment: - Enabled: false - -Layout/LineLength: - Max: 120 diff --git a/tmux.conf_orig b/tmux.conf_orig deleted file mode 100644 index cf61065..0000000 --- a/tmux.conf_orig +++ /dev/null @@ -1,83 +0,0 @@ -# use vi mode -set -g mode-keys vi - -# remap tmux -set -g prefix C-a -unbind C-b -bind C-a send-prefix - -# sane scrolling -setw -g mouse on -bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M -bind -n WheelDownPane select-pane -t= \; send-keys -M - -#setting the delay between prefix and command -set -sg escape-time 1 - -# start window index of 1 instead of 0 -set-option -g base-index 1 - -# Start panes at 1 instead of 0. tmux 1.6 only -setw -g pane-base-index 1 - -# Status line left side -set -g status-left-length 40 -set -g status-left '#[fg=green](#S) #(whoami)@#H#[default]' - -# Status line right side -# 28 Nov 18:15 -set -g status-right '#[fg=blue]%d %b %R' - -# Update the status bar every sixty seconds -set -g status-interval 30 - -# Center the window list -set -g status-justify centre - -# default statusbar colors -set -g status-fg white -set -g status-bg default -set -g status-attr bright - -# default window title colors -set-window-option -g window-status-fg white -set-window-option -g window-status-bg default -set-window-option -g window-status-attr dim - -# active window title colors -set-window-option -g window-status-current-fg white -set-window-option -g window-status-current-bg default -set-window-option -g window-status-current-attr bright - -# reload config -bind r source-file ~/.tmux.conf \; display-message "Config reloaded..." - -# auto window rename -set-window-option -g automatic-rename - -# enable activity alerts -setw -g monitor-activity on -set -g visual-activity on - -# splitting panes -bind _ split-window -h -bind - split-window -v - -# set correct term -set -g default-terminal xterm - -# easily toggle synchronization (mnemonic: e is for echo) -bind e setw synchronize-panes on -bind E setw synchronize-panes off - -# moving between panes -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R - -# Pane resizing -bind -r H resize-pane -L 5 -bind -r J resize-pane -D 5 -bind -r K resize-pane -U 5 -bind -r L resize-pane -R 5