update and clean up some configs
This commit is contained in:
@@ -65,7 +65,6 @@ cask "iterm2"
|
|||||||
cask "keyboardcleantool"
|
cask "keyboardcleantool"
|
||||||
cask "keystash"
|
cask "keystash"
|
||||||
cask "latest"
|
cask "latest"
|
||||||
cask "lingon-x"
|
|
||||||
cask "llamachat"
|
cask "llamachat"
|
||||||
cask "mongodb-compass"
|
cask "mongodb-compass"
|
||||||
cask "nova"
|
cask "nova"
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
"Alt-f": "command:format",
|
"Alt-f": "command:format",
|
||||||
"Alt-k": "command:hover",
|
"Alt-k": "command:hover",
|
||||||
"Alt-r": "command:references",
|
"Alt-r": "command:references",
|
||||||
|
"CtrlP": "command:palettero",
|
||||||
"CtrlSpace": "command:lspcompletion",
|
"CtrlSpace": "command:lspcompletion",
|
||||||
"CtrlUnderscore": "lua:comment.comment"
|
"CtrlUnderscore": "lua:comment.comment",
|
||||||
|
"F6": "command-edit:gorename "
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"colorscheme": "catppuccin-frappe",
|
"colorscheme": "bubblegum",
|
||||||
"softwrap": true,
|
"softwrap": true,
|
||||||
"tabsize": 2
|
"tabsize": 2
|
||||||
}
|
}
|
||||||
|
|||||||
+19
-1
@@ -2,7 +2,8 @@
|
|||||||
{
|
{
|
||||||
"context": "Workspace",
|
"context": "Workspace",
|
||||||
"bindings": {
|
"bindings": {
|
||||||
"cmd-shift-o": "file_finder::Toggle"
|
"cmd-shift-o": "file_finder::Toggle",
|
||||||
|
"cmd-b": "workspace::ToggleRightDock"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -12,5 +13,22 @@
|
|||||||
"cmd-p": "outline::Toggle",
|
"cmd-p": "outline::Toggle",
|
||||||
"cmd-r": "task::Spawn"
|
"cmd-r": "task::Spawn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "Pane",
|
||||||
|
"bindings": {
|
||||||
|
"cmd-1": ["pane::ActivateItem", 0],
|
||||||
|
"cmd-2": ["pane::ActivateItem", 1],
|
||||||
|
"cmd-3": ["pane::ActivateItem", 2],
|
||||||
|
"cmd-4": ["pane::ActivateItem", 3],
|
||||||
|
"cmd-5": ["pane::ActivateItem", 4],
|
||||||
|
"cmd-6": ["pane::ActivateItem", 5],
|
||||||
|
"cmd-7": ["pane::ActivateItem", 6],
|
||||||
|
"cmd-8": ["pane::ActivateItem", 7],
|
||||||
|
"cmd-9": ["pane::ActivateItem", 8],
|
||||||
|
"cmd-0": "pane::ActivateLastItem",
|
||||||
|
"alt-cmd-left": ["workspace::ActivatePaneInDirection", "Left"],
|
||||||
|
"alt-cmd-right": ["workspace::ActivatePaneInDirection", "Right"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -53,7 +53,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"project_panel": {
|
"project_panel": {
|
||||||
"indent_size": 10
|
"indent_size": 10,
|
||||||
|
"dock": "right"
|
||||||
},
|
},
|
||||||
"file_types": {
|
"file_types": {
|
||||||
"HTML": ["hbs", "njk"]
|
"HTML": ["hbs", "njk"]
|
||||||
|
|||||||
+21
-6
@@ -1,12 +1,27 @@
|
|||||||
alias config="bbedit ~/dotfiles"
|
# overrides
|
||||||
|
alias ls="eza"
|
||||||
|
alias cd="z"
|
||||||
|
|
||||||
|
# developer stuff
|
||||||
alias nv="open -a Nova"
|
alias nv="open -a Nova"
|
||||||
|
alias runx="npx concurrently \"serverless offline\" \"nx dev frontend\""
|
||||||
|
|
||||||
|
# git
|
||||||
alias ptob="gh pr create -B beta"
|
alias ptob="gh pr create -B beta"
|
||||||
alias prune-git="git remote prune origin"
|
alias prune-git="git remote prune origin"
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
alias macmini="ssh admin@Memory-Alpha.local"
|
||||||
|
|
||||||
|
# shell scripts
|
||||||
alias dev="sh ~/dotfiles/scripts/run-dev.sh"
|
alias dev="sh ~/dotfiles/scripts/run-dev.sh"
|
||||||
alias lint="sh ~/dotfiles/scripts/run-lint.sh"
|
alias lint="sh ~/dotfiles/scripts/run-lint.sh"
|
||||||
alias commit="sh ~/dotfiles/scripts/git-commit-push.sh"
|
alias commit="sh ~/dotfiles/scripts/git-commit-push.sh"
|
||||||
alias macmini="ssh admin@Memory-Alpha.local"
|
|
||||||
alias ls="eza"
|
# homebrew
|
||||||
alias cd="z"
|
alias brewfile="brew bundle dump --file=~/dotfiles/Brewfile --force --"
|
||||||
alias runx="npx concurrently \"serverless offline\" \"nx dev frontend\""
|
alias installbrewfile="brew bundle install --file=~/dotfiles/Brewfile"
|
||||||
alias brewfile="brew bundle dump --file=~/dotfiles/Brewfile --force"
|
|
||||||
|
# dotfiles
|
||||||
|
alias config="bbedit ~/dotfiles"
|
||||||
|
alias linkdfs="sh ~/dotfiles/symlink_dotfiles.zsh"
|
||||||
|
|||||||
Reference in New Issue
Block a user