4 files changed,
46 insertions(+),
8 deletions(-)
Author:
Smirnov Olexander
ss2316544@gmail.com
Committed at:
2022-04-21 14:34:00 +0300
Parent:
7e4ee8d
jump to
| M | README.md |
| M | bin/arch-upd |
| M | config/fish/config.fish |
| M | vscode/settings.json |
M
README.md
@@ -14,7 +14,7 @@
## Install dependencys ```bash sudo pacman -S git alacritty github-cli neovim tmux zsh ttf-jetbrains-mono -yay -S rcm visual-studio-code-bin +paru -S rcm visual-studio-code-bin ``` ## And install deps
M
bin/arch-upd
@@ -1,4 +1,4 @@
#!/bin/sh sudo pacman -Syyuu --noconfirm -yay -Sua --noconfirm +paru -Sua --noconfirm sudo pacman -Rs $(pacman -Qdtq) --noconfirm
M
config/fish/config.fish
@@ -8,12 +8,15 @@ set -g PATH $HOME/.local/bin $PATH
set -g PATH $HOME/.golang/bin $PATH set -g PATH $HOME/.yarn/bin $PATH set -g PATH $HOME/.cargo/bin $PATH +set -g PATH $HOME/.deno/bin $PATH set fish_greeting if status is-interactive starship init fish | source zoxide init fish | source fnm env | source + + source ~/.asdf/asdf.fish end function fish_user_key_bindings
M
vscode/settings.json
@@ -1,16 +1,23 @@
{ "update.showReleaseNotes": false, - "workbench.tips.enabled": false, + "window.zoomLevel": 1, "window.titleBarStyle": "custom", + "window.menuBarVisibility": "compact", + "workbench.tips.enabled": false, "workbench.startupEditor": "readme", "workbench.editor.untitled.hint": "hidden", + "workbench.activityBar.visible": false, "extensions.ignoreRecommendations": true, "explorer.compactFolders": false, "explorer.confirmDragAndDrop": false, "explorer.confirmDelete": false, - "terminal.integrated.fontSize": 15, + "explorer.experimental.fileNesting.enabled": true, + "explorer.experimental.fileNesting.patterns": { + "package.json": "package-lock.json, yarn.lock, tsconfig*.json, yarn-error.log, .prettier*, .bsb.lock, bsconfig*.json" + }, + "terminal.integrated.fontSize": 16, "files.trimTrailingWhitespace": true, - "editor.fontFamily": "Jetbrains Mono, monospace", + "editor.fontFamily": "Jetbrains Mono", "editor.cursorBlinking": "expand", "editor.fontSize": 16, "editor.smoothScrolling": true,@@ -24,6 +31,34 @@ "git.autofetch": true,
"git.confirmSync": false, "git.enableSmartCommit": true, "go.formatTool": "gofumpt", - "window.menuBarVisibility": "compact", - "workbench.activityBar.visible": false, -}+ "vim.hlsearch": true, + "vim.useSystemClipboard": true, + "vim.surround": true, + "vim.leader": "<space>", + "vim.insertModeKeyBindings": [{ "before": ["j", "k"], "after": ["<esc>"] }], + "vim.normalModeKeyBindings": [ + { "before": ["K"], "commands": ["editor.action.showHover"] }, + { "before": ["leader", "h"], "commands": [":nohl"] }, + { "before": ["leader", "w"], "commands": ["workbench.action.files.save"] }, + { + "before": ["leader", "c"], + "commands": ["workbench.action.closeActiveEditor"] + }, + { "before": ["leader", "e"], "commands": ["workbench.view.explorer"] }, + { "before": ["leader", "f"], "commands": ["workbench.action.quickOpen"] } + ], + "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, + "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, + "[prisma]": { + "editor.defaultFormatter": "Prisma.prisma" + }, + "[jsonc]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "typescript.updateImportsOnFileMove.enabled": "always", + "terminal.integrated.commandsToSkipShell": [ + "language-julia.interrupt" + ], + "julia.symbolCacheDownload": true, + "julia.enableTelemetry": false +}