housekeeping

master
utsuho 2025-02-05 17:24:04 +00:00
parent 4e2aa6bcb7
commit bfbb1d6206
Signed by: utsuho
GPG Key ID: 8162F60A581FE151
15 changed files with 148 additions and 114 deletions

View File

@ -1,11 +0,0 @@
hardstatus alwayslastline
caption always "%{= R}[%{= G}%c:%{= G}%s%{= R}] %{= R}[%{= G}${USER}%{= R}@%{= G}%H%{= R}]%{= G} %{= R}[%{= G}%n %t %h%{= R}]%{= G} %W"
termcapinfo xterm|xterms|xs|rxvt ti@:te@
defscrollback 10000
bindkey ^N screen
bindkey ^T title

21
LICENSE 100644
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 Creative Commons
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,4 +1,11 @@
<img src="img/u.png" alt="utsuho" width="200"/> <img src="https://utsuho.rocks/img/u.png" alt="utsuho" width="200"/>
# my personal dotfiles # my personal dotfiles
probably not useful to you but feel free to look, use or remix!
## folders
[system-any](system-any) for any of my systems, usually as a base
[system-specific](system-any) for specific systems

BIN
img/u.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 516 KiB

View File

@ -21,4 +21,3 @@ set stripecolor red,normal
## set zero ## set zero
bind ^P linenumbers all bind ^P linenumbers all

View File

@ -0,0 +1,10 @@
hardstatus alwayslastline
caption always "%{= kR}[%{= kG}%c:%{= kG}%s%{= kR}] %{= kR}[%{= kG}${USER}%{= kR}@%{= kG}%H%{= kR}]%{= kG} %{= kR}[%{= kG}%n %t %h%{= kR}]%{= kG} %W"
#shelltitle "$ |bash"
termcapinfo xterm|xterms|xs|rxvt ti@:te@
defscrollback 10000
bindkey ^N screen
bindkey ^T title

View File

@ -6,24 +6,20 @@
"liveshare.guestApprovalRequired": true, "liveshare.guestApprovalRequired": true,
"markdown.preview.fontSize": 16, "markdown.preview.fontSize": 16,
"editor.formatOnSave": false, // fuck this shit "editor.formatOnSave": false, // fuck this shit
"window.title": "${dirty}${activeEditorShort}@vscode", // edgy, todo: remove [Unsupported] somehow "window.title": "${dirty}${activeEditorShort}@vscode",
// Zen mode stuff
"zenMode.hideTabs": true,
"zenMode.fullScreen": false, "zenMode.fullScreen": false,
"zenMode.centerLayout": false, "zenMode.centerLayout": false,
"zenMode.hideLineNumbers": false, "zenMode.hideLineNumbers": false,
"zenMode.hideActivityBar": true, "zenMode.hideActivityBar": true,
"zenMode.hideStatusBar": true, "zenMode.hideStatusBar": true,
"zenMode.silentNotifications": true, "zenMode.silentNotifications": true,
"zenMode.restore": true, // if quit in zen, open in zen "zenMode.restore": true, // the funny tab things piss me off
"editor.renderIndentGuides": false, // the funny tab things piss me off
"css.completion.completePropertyWithSemicolon": false, // would rather type out myself "css.completion.completePropertyWithSemicolon": false, // would rather type out myself
"html.autoClosingTags": false, // would rather type out myself "html.autoClosingTags": false, // would rather type out myself
"editor.renderWhitespace": "none", // remove funny space dots "editor.renderWhitespace": "all",
"editor.useTabStops": false, // OH BOY Fuck this "editor.useTabStops": false, // OH BOY Fuck this
"breadcrumbs.enabled": false, //directory listing, sometimes nice but i like it off "breadcrumbs.enabled": false, //directory listing, sometimes nice but i like it off
"window.menuBarVisibility": "toggle", // isn't that what the alt key is for? "window.menuBarVisibility": "toggle",
"workbench.activityBar.visible": true,
"editor.minimap.enabled": false, // never liked this go begin with "editor.minimap.enabled": false, // never liked this go begin with
"workbench.statusBar.visible": true, // sometimes nice, hidden in zen "workbench.statusBar.visible": true, // sometimes nice, hidden in zen
"workbench.iconTheme": null, // looks nicer without icons "workbench.iconTheme": null, // looks nicer without icons
@ -54,11 +50,23 @@
"titleBar.inactiveBackground": "#031d09" "titleBar.inactiveBackground": "#031d09"
}, },
"files.associations": { "files.associations": {
"*.HC": "c" "*.HC": "c",
"*.H": "c",
"*.HPP": "cpp",
"*mpy": "python",
"*.starfall": "lua"
}, },
"editor.fontFamily": "Unifont, Consolas, 'Courier New', monospace", // "editor.fontFamily": "Unifont, Consolas, 'Courier New', monospace",
"editor.fontFamily": "'Sarasa Mono J', Unifont, Consolas, 'Courier New', monospace", // unifont looks weird on high dpi displays
"editor.fontSize": 16, "editor.fontSize": 16,
"[html]": { "[html]": {
"editor.formatOnSave": false "editor.formatOnSave": false
} },
"window.titleBarStyle": "native",
"zenMode.showTabs": "single",
"editor.guides.indentation": false,
"git.openRepositoryInParentFolders": "never",
"window.customTitleBarVisibility": "never",
"python.defaultInterpreterPath": "N:\\conda"
} }