Skip to content

Commit

Permalink
Upd
Browse files Browse the repository at this point in the history
  • Loading branch information
lainiwa committed Oct 6, 2023
1 parent 46febf1 commit 8f2b668
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 18 deletions.
2 changes: 1 addition & 1 deletion config/htop/htoprc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ show_program_path=1
highlight_base_name=0
highlight_megabytes=1
highlight_threads=1
tree_view=0
tree_view=1
header_margin=1
detailed_cpu_time=0
cpu_count_from_zero=0
Expand Down
14 changes: 14 additions & 0 deletions config/pypoetry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[tool.poetry]
name = "poetry-instance"
version = "1.6.1"
description = ""
authors = []
license = ""

[tool.poetry.dependencies]
python = "3.8.10"
poetry = "^1.6.1"

[tool.poetry.group.additional.dependencies]
poetry-plugin-up = "^0.3.0"

52 changes: 37 additions & 15 deletions config/sublime3-settings/Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,19 +1,41 @@
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{
"keys": ["ctrl+f5", "ctrl+f5"],
"command": "insert_date",
"args":
{
"format": "%Y-%m-%d %H:%M:%S"
}
},
{
"keys": ["super+alt+shift+w"],
"command": "toggle_setting",
"args":
"keys": ["ctrl+tab"],
"command": "next_view"
},
{
"keys": ["ctrl+shift+tab"],
"command": "prev_view"
},
{
"keys": ["ctrl+f5", "ctrl+f5"],
"command": "insert_date",
"args":
{
"format": "%Y-%m-%d %H:%M:%S"
}
},
{
"keys": ["super+alt+shift+w"],
"command": "toggle_setting",
"args":
{
"setting": "word_wrap"
}
},
// {
// "keys": ["ctrl+alt+t"],
// "command": "delete_trailing_spaces"
// }
// {
// "keys": ["ctrl+alt+t"],
// "command": "run_macro_file",
// "args": {"file": "Packages/User/trim_trailing_spaces.sublime-macro"}
// }
{
"setting": "word_wrap"
"keys": ["ctrl+alt+t"],
"command": "reg_replace",
"args": {"replacements": ["trim_trailing_spaces"]}
}
}]

]
2 changes: 1 addition & 1 deletion config/sublime3-settings/Package Control.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"InsertDate",
"Ledger syntax highlighting",
"LSP",
"LSP-copilot",
"MagicPython",
"Markdown Extended",
"MarkdownEditing",
Expand All @@ -38,6 +37,7 @@
"PackageDev",
"Pretty JSON",
"rainbow_csv",
"RegReplace",
"RestructuredText Improved",
"Rust Enhanced",
"SideBarEnhancements",
Expand Down
2 changes: 1 addition & 1 deletion config/sublime3-settings/Preferences.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
"create_window_at_startup": false,
"drag_text": false,
"font_size": 19,
"font_size": 17,
"highlight_line": true,
"ignored_packages":
[
Expand Down
14 changes: 14 additions & 0 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,25 @@ fi
# autoload -Uz add-zsh-hook
# add-zsh-hook preexec preexec_hook_set_title

# export COMPOSE_DOCKER_CLI_BUILD=1
# export DOCKER_BUILDKIT=1
autoload -U zargs

# Deduplicate these arrays
typeset -U path cdpath fpath manpath
# zprof

# k-fwd() {
# trap 'sudo kill %2 %3' SIGINT
# sudo -s 'exit'
# while true; do
# sudo chown -R lain:lain ~/.tsh
# # tsh login
# sleep 60
# done &
# sudo -E =kubefwd services -n quantor &
# wait
# }

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

0 comments on commit 8f2b668

Please sign in to comment.