update doots
This commit is contained in:
parent
42edb52b80
commit
94a6e7fddf
3 changed files with 14 additions and 3 deletions
|
@ -723,7 +723,7 @@ window:
|
||||||
# in the order they were defined in.
|
# in the order they were defined in.
|
||||||
key_bindings:
|
key_bindings:
|
||||||
- { key: Paste, action: Paste }
|
- { key: Paste, action: Paste }
|
||||||
- { key: Copy, action: Copy }
|
- { key: C, mods: Control|Shift, action: Copy }
|
||||||
#- { key: L, mods: Control, action: ClearLogNotice }
|
#- { key: L, mods: Control, action: ClearLogNotice }
|
||||||
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
|
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
|
||||||
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
|
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
|
||||||
|
|
|
@ -6,9 +6,12 @@
|
||||||
[user]
|
[user]
|
||||||
useConfigOnly = true
|
useConfigOnly = true
|
||||||
email = invalidfire@fastmail.com
|
email = invalidfire@fastmail.com
|
||||||
name = riley
|
name = Riley Housden
|
||||||
|
signingkey = 0D6208F6DF56B4D8
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
[commit]
|
||||||
|
gpgsign = true
|
||||||
|
|
10
.xonshrc
10
.xonshrc
|
@ -14,7 +14,8 @@ def load_path():
|
||||||
'~/addins',
|
'~/addins',
|
||||||
'~/.local/bin',
|
'~/.local/bin',
|
||||||
'~/bin',
|
'~/bin',
|
||||||
'~/go/bin'
|
'~/go/bin',
|
||||||
|
'~/.deno/bin',
|
||||||
])
|
])
|
||||||
sys.path.insert(0, '')
|
sys.path.insert(0, '')
|
||||||
|
|
||||||
|
@ -89,6 +90,12 @@ def _mcterm():
|
||||||
raise FileNotFoundError("~/.mcrcon")
|
raise FileNotFoundError("~/.mcrcon")
|
||||||
mcrcon -t
|
mcrcon -t
|
||||||
|
|
||||||
|
def _add_system_user(args: list):
|
||||||
|
"""used to add a system user for systemd services"""
|
||||||
|
$(adduser --system --home @(args[1]))
|
||||||
|
$(addgroup --system @(args[0]))
|
||||||
|
$(adduser @(args[0]) @(args[0]))
|
||||||
|
|
||||||
# aliases
|
# aliases
|
||||||
aliases.update({
|
aliases.update({
|
||||||
'bwg': _bwc,
|
'bwg': _bwc,
|
||||||
|
@ -103,6 +110,7 @@ aliases.update({
|
||||||
'owo': 'echo uwu',
|
'owo': 'echo uwu',
|
||||||
'ensure-tmux': _ensure_tmux,
|
'ensure-tmux': _ensure_tmux,
|
||||||
'alias': _alias,
|
'alias': _alias,
|
||||||
|
'asu': _add_system_user
|
||||||
})
|
})
|
||||||
|
|
||||||
# man page colors :O
|
# man page colors :O
|
||||||
|
|
Loading…
Reference in a new issue