Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
[ $(xfconf-query -c accessibility -p /MouseKeys) == "false" ] \
&& $(xfconf-query -c accessibility -p /MouseKeys -s true) \
|| $(xfconf-query -c accessibility -p /MouseKeys -s false)
@pyratin
pyratin / .zshrc
Last active October 2, 2025 02:48
.zshrc
setopt nosharehistory
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_FIND_NO_DUPS
setopt HIST_SAVE_NO_DUPS
setopt HIST_REDUCE_BLANKS
export EDITOR=nvim
@pyratin
pyratin / .tmux.conf
Last active October 2, 2025 02:47
.tmux.conf
# Tmux settings
# Set XTerm key bindings
setw -g xterm-keys on
# Count sessions start at 1
set -g base-index 1
# Use vim bindings
setw -g mode-keys vi
@pyratin
pyratin / .vimrc
Last active September 13, 2025 06:21
.vimrc
set nocompatible
filetype off
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-obsession'
Plug 'scrooloose/nerdcommenter'