diff options
author | Justine Smithies <justine@openbsd-desktop.localdomain> | 2025-10-07 20:19:12 +0100 |
---|---|---|
committer | Justine Smithies <justine@openbsd-desktop.localdomain> | 2025-10-07 20:19:12 +0100 |
commit | a6a0db8d941e44df9a00ea62288a4aa37f3a16a7 (patch) | |
tree | 4981d0184fb19a76c9aa090aa570794e29b84b04 /.Xresources | |
parent | 4e1285361224cd71f2ba8893e4c8b0be3b3fc0db (diff) |
Initial commit
Diffstat (limited to '.Xresources')
-rw-r--r-- | .Xresources | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..1dae43e --- /dev/null +++ b/.Xresources @@ -0,0 +1,61 @@ +XTerm*termName: xterm-256color +XTerm*locale: true +XTerm*highlightSelection: true +XTerm*trimSelection: true +XTerm*saveLinew: 4096 +XTerm*scrollBar: false +XTerm*cursorBlink: true +XTerm.VT100.utf8: true +XTerm*allowScrollLock: true + +! Xcursor theme +Xcursor.theme: Adwaita +Xcursor.size: 24 + +! Font +XTerm*faceName: Go Mono Nerd Font Mono +XTerm*renderFont: true +XTerm*faceSize: 10 + +!Xft.dpi: 100 + +XTerm*keepClipboard: true +XTerm*selectToClipboard: true +XTerm*VT100.Translations: #override \n\ + Ctrl Shift <KeyPress>C: copy-selection(CLIPBOARD) \n\ + Ctrl Shift <KeyPress>V: insert-selection(CLIPBOARD) + +! Clicking a line selects only from the current word forward +XTerm*cutToBeginningOfLine : false +! and dont include a trailing newline in the selection! +XTerm*cutNewline : false +! Some black magic to change what characters XTerm considers "word delimiters" +XTerm*charClass : 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48 +! Select word on two clicks +XTerm*on2Clicks : word +! Select whole line on three clicks +XTerm*on3Clicks : line +! Select whole group on four clicks +XTerm*on4Clicks: group +! Select whole page on five clicks +XTerm*on5Clicks: page + +! Gruvbox theme +XTerm*background: #262626 +XTerm*foreground: #ebdbb2 +XTerm*color0: #262628 +XTerm*color8: #928374 +XTerm*color1: #CC241D +XTerm*color9: #fb4934 +XTerm*color2: #98971a +XTerm*color10: #b8bb26 +XTerm*color3: #FF8F15 +XTerm*color11: #FFAF00 +XTerm*color4: #458588 +XTerm*color12: #83a598 +XTerm*color5: #b16286 +XTerm*color13: #d3869b +XTerm*color6: #689d6a +XTerm*color14: #8ec07c +XTerm*color7: #a89984 +XTerm*color15: #ebdbb2 |