This commit is contained in:
root
2026-07-21 11:17:29 +00:00
parent 69f99793b0
commit 7a240b42c3
3 changed files with 21 additions and 6 deletions

View File

@@ -4,11 +4,6 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
if [[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} && ${SHLVL} == 1 ]]
then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=''
exec fish $LOGIN_OPTION
fi
alias ls='ls --color=auto'
alias grep='grep --color=auto'

View File

@@ -8,9 +8,21 @@ vim.o.smartindent = true -- Automatically indent new lines
vim.o.wrap = false -- Disable line wrapping
vim.o.cursorline = true -- Highlight the current line
vim.o.termguicolors = true -- Enable 24-bit RGB colors
vim.o.clipboard = "unnamedplus"
vim.filetype.add({extension = {svx = "markdown"}})
local kitten = vim.fn.expand("~/.local/share/kitty-ssh-kitten/kitty/bin/kitten")
vim.opt.clipboard = "unnamedplus"
vim.g.clipboard = {
name = 'OSC 52',
copy = {
['+'] = require('vim.ui.clipboard.osc52').copy('+'),
-- ['*'] = require('vim.ui.clipboard.osc52').copy('*'),
},
paste = {
['+'] = require('vim.ui.clipboard.osc52').paste('+'),
-- ['*'] = require('vim.ui.clipboard.osc52').paste('*'),
},
}
-- Syntax highlighting and filetype plugins
vim.cmd('syntax enable')
vim.cmd('filetype plugin indent on')

8
.tmux.conf Normal file
View File

@@ -0,0 +1,8 @@
#set-option -g remain-on-exit on
set-option -g default-shell /bin/zsh
set -g history-limit 30000
# Allow Tmux to pass through OSC 52 escape sequences
set -g allow-passthrough on
set -g mouse on
set -g set-clipboard on