Skip to content

Commit 3ad8743

Browse files
committed
WIP
1 parent 67f2a83 commit 3ad8743

File tree

7 files changed

+38
-29
lines changed

7 files changed

+38
-29
lines changed

fish/conf.d/07_zoxide.fish

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zoxide init fish | source

fish/conf.d/106_asdf.fish

Lines changed: 0 additions & 7 deletions
This file was deleted.

fish/conf.d/108_zoxide.fish

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if status --is-interactive; and type --query zoxide
2+
zoxide init fish | source
3+
end

fish/config.fish

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ end
55

66
# Try to improve startup time
77
# starship init fish | source
8-
/opt/homebrew/bin/starship init fish --print-full-init | source
8+
# /opt/homebrew/bin/starship init fish --print-full-init | source
9+
/opt/homebrew/bin/starship init fish | source

fish/functions/fssh.fish

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
function fssh --description 'Forter SSH shortcut' --argument-names target_ip username --wraps ssh
2-
if test -z "$username"
3-
set username "gilad.peleg"
1+
function fssh --description 'Forter SSH shortcut' --argument-names target_connection
2+
set -l connection $target_connection
3+
if not string match -q "*@*" -- $connection
4+
set connection "gilad.peleg@$connection"
45
end
5-
command ssh -F ~/.ssh/gozer-new "$username@$target_ip"
6+
command ssh -F ~/.ssh/gozer-new $connection
67
end

npm/.npmrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ depth=0
22
loglevel=warn
33
progress=false
44
color=true
5-
strict-engine=true
65
prefix=~/.local/share/npm-global-modules
7-
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
6+
engine-strict=true

vscode/settings.json

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,24 @@
22
"[astro]": {
33
"editor.defaultFormatter": "astro-build.astro-vscode"
44
},
5+
"[dockerfile]": {
6+
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
7+
},
58
"[javascript]": {
69
"editor.defaultFormatter": "esbenp.prettier-vscode"
710
},
11+
"[json]": {
12+
"editor.defaultFormatter": "esbenp.prettier-vscode"
13+
},
814
"[jsonc]": {
915
"editor.defaultFormatter": "esbenp.prettier-vscode"
1016
},
1117
"[markdown]": {
1218
"editor.defaultFormatter": "esbenp.prettier-vscode"
1319
},
20+
"[mdx]": {
21+
"editor.defaultFormatter": "unifiedjs.vscode-mdx"
22+
},
1423
"[ruby]": {
1524
"editor.defaultFormatter": "Shopify.ruby-lsp"
1625
},
@@ -27,7 +36,11 @@
2736
"printEngine": "pprint",
2837
"width": 120
2938
},
39+
"chat.editing.confirmEditRequestRetry": false,
40+
"cline.disableBrowserTool": true,
41+
"docker.extension.dockerEngineAvailabilityPrompt": false,
3042
"editor.fontSize": 13,
43+
"editor.minimap.enabled": false,
3144
"editor.tabSize": 2,
3245
"explorer.confirmDelete": false,
3346
"explorer.confirmDragAndDrop": false,
@@ -48,41 +61,39 @@
4861
"scminput": false
4962
},
5063
"github.gitProtocol": "ssh",
64+
"go.inferGopath": true,
5165
"grunt.autoDetect": "off",
5266
"gulp.autoDetect": "off",
5367
"jake.autoDetect": "off",
54-
"rubyLsp.formatter": "none",
68+
"rubyLsp.formatter": "auto",
5569
"rubyLsp.rubyVersionManager": {
5670
"identifier": "mise"
5771
},
5872
"search.exclude": {
59-
"package-lock.json": true,
6073
".git/**": true,
6174
"**/*.code-search": true,
6275
"**/bower_components": true,
63-
"**/node_modules": true
76+
"**/node_modules": true,
77+
"package-lock.json": true
6478
},
6579
"telemetry.telemetryLevel": "off",
6680
"terminal.external.osxExec": "Alacritty.app",
67-
"terminal.integrated.confirmOnExit": "always",
81+
"terminal.integrated.confirmOnExit": "hasChildProcesses",
6882
"terminal.integrated.cursorBlinking": true,
83+
"update.mode": "start",
84+
"window.openFilesInNewWindow": "on",
85+
"window.openFoldersInNewWindow": "on",
6986
"window.zoomLevel": 1,
7087
"workbench.colorCustomizations": {
7188
"terminalCursor.foreground": "#00ffaa"
7289
},
7390
"workbench.colorTheme": "One Dark Pro",
7491
"workbench.startupEditor": "none",
75-
"cline.disableBrowserTool": true,
76-
"cline.mcpMarketplace.enabled": false,
77-
"[mdx]": {
78-
"editor.defaultFormatter": "unifiedjs.vscode-mdx"
79-
},
80-
"[json]": {
92+
"javascript.updateImportsOnFileMove.enabled": "always",
93+
"javascript.inlayHints.parameterNames.enabled": "all",
94+
"github.copilot.nextEditSuggestions.enabled": true,
95+
"[typescriptreact]": {
8196
"editor.defaultFormatter": "esbenp.prettier-vscode"
8297
},
83-
"[dockerfile]": {
84-
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
85-
},
86-
"chat.editing.confirmEditRequestRetry": false,
87-
"go.inferGopath": true
98+
"git.blame.editorDecoration.enabled": true
8899
}

0 commit comments

Comments
 (0)