Skip to content

Commit 8f2b668

Browse files
committed
Upd
1 parent 46febf1 commit 8f2b668

File tree

6 files changed

+68
-18
lines changed

6 files changed

+68
-18
lines changed

config/htop/htoprc

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ show_program_path=1
1212
highlight_base_name=0
1313
highlight_megabytes=1
1414
highlight_threads=1
15-
tree_view=0
15+
tree_view=1
1616
header_margin=1
1717
detailed_cpu_time=0
1818
cpu_count_from_zero=0

config/pypoetry/pyproject.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[tool.poetry]
2+
name = "poetry-instance"
3+
version = "1.6.1"
4+
description = ""
5+
authors = []
6+
license = ""
7+
8+
[tool.poetry.dependencies]
9+
python = "3.8.10"
10+
poetry = "^1.6.1"
11+
12+
[tool.poetry.group.additional.dependencies]
13+
poetry-plugin-up = "^0.3.0"
14+
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,41 @@
11
[
2-
{ "keys": ["ctrl+tab"], "command": "next_view" },
3-
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
4-
{
5-
"keys": ["ctrl+f5", "ctrl+f5"],
6-
"command": "insert_date",
7-
"args":
82
{
9-
"format": "%Y-%m-%d %H:%M:%S"
10-
}
11-
},
12-
{
13-
"keys": ["super+alt+shift+w"],
14-
"command": "toggle_setting",
15-
"args":
3+
"keys": ["ctrl+tab"],
4+
"command": "next_view"
5+
},
6+
{
7+
"keys": ["ctrl+shift+tab"],
8+
"command": "prev_view"
9+
},
10+
{
11+
"keys": ["ctrl+f5", "ctrl+f5"],
12+
"command": "insert_date",
13+
"args":
14+
{
15+
"format": "%Y-%m-%d %H:%M:%S"
16+
}
17+
},
18+
{
19+
"keys": ["super+alt+shift+w"],
20+
"command": "toggle_setting",
21+
"args":
22+
{
23+
"setting": "word_wrap"
24+
}
25+
},
26+
// {
27+
// "keys": ["ctrl+alt+t"],
28+
// "command": "delete_trailing_spaces"
29+
// }
30+
// {
31+
// "keys": ["ctrl+alt+t"],
32+
// "command": "run_macro_file",
33+
// "args": {"file": "Packages/User/trim_trailing_spaces.sublime-macro"}
34+
// }
1635
{
17-
"setting": "word_wrap"
36+
"keys": ["ctrl+alt+t"],
37+
"command": "reg_replace",
38+
"args": {"replacements": ["trim_trailing_spaces"]}
1839
}
19-
}]
40+
41+
]

config/sublime3-settings/Package Control.sublime-settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"InsertDate",
3030
"Ledger syntax highlighting",
3131
"LSP",
32-
"LSP-copilot",
3332
"MagicPython",
3433
"Markdown Extended",
3534
"MarkdownEditing",
@@ -38,6 +37,7 @@
3837
"PackageDev",
3938
"Pretty JSON",
4039
"rainbow_csv",
40+
"RegReplace",
4141
"RestructuredText Improved",
4242
"Rust Enhanced",
4343
"SideBarEnhancements",

config/sublime3-settings/Preferences.sublime-settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
66
"create_window_at_startup": false,
77
"drag_text": false,
8-
"font_size": 19,
8+
"font_size": 17,
99
"highlight_line": true,
1010
"ignored_packages":
1111
[

zshrc

+14
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,25 @@ fi
7676
# autoload -Uz add-zsh-hook
7777
# add-zsh-hook preexec preexec_hook_set_title
7878

79+
# export COMPOSE_DOCKER_CLI_BUILD=1
80+
# export DOCKER_BUILDKIT=1
81+
autoload -U zargs
7982

8083
# Deduplicate these arrays
8184
typeset -U path cdpath fpath manpath
8285
# zprof
8386

87+
# k-fwd() {
88+
# trap 'sudo kill %2 %3' SIGINT
89+
# sudo -s 'exit'
90+
# while true; do
91+
# sudo chown -R lain:lain ~/.tsh
92+
# # tsh login
93+
# sleep 60
94+
# done &
95+
# sudo -E =kubefwd services -n quantor &
96+
# wait
97+
# }
8498

8599
# # Run tmux on start
86100
# if (( ${+commands[tmux]} )) &&

0 commit comments

Comments
 (0)