From 4378a4161ba961c0e2ade1f13e3399bfa07a083e Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Wed, 22 Oct 2025 16:04:13 +0200 Subject: Add vim-prettier plugin and alias for buds --- nvim/lazy-lock.json | 3 ++- nvim/lua/config/lazy.lua | 3 ++- zsh/index.zsh | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 55bbbc9..d7ef896 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -10,5 +10,6 @@ "nvim-web-devicons": { "branch": "master", "commit": "b8221e42cf7287c4dcde81f232f58d7b947c210d" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, "typescript-tools.nvim": { "branch": "master", "commit": "bf11d98ad5736e1cbc1082ca9a03196d45c701f1" }, - "vim-fugitive": { "branch": "master", "commit": "61b51c09b7c9ce04e821f6cf76ea4f6f903e3cf4" } + "vim-fugitive": { "branch": "master", "commit": "61b51c09b7c9ce04e821f6cf76ea4f6f903e3cf4" }, + "vim-prettier": { "branch": "master", "commit": "7dbdbb12c50a9f4ba72390cce2846248e4368fd0" } } diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 122bfa0..8483b9f 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -56,7 +56,8 @@ require("lazy").setup({ "pmizio/typescript-tools.nvim", dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" }, opts = {}, - } + }, + { "prettier/vim-prettier" } }, install = { colorscheme = { "gruvbox" } }, checker = { enabled = true }, diff --git a/zsh/index.zsh b/zsh/index.zsh index 9db357d..0e8ec61 100644 --- a/zsh/index.zsh +++ b/zsh/index.zsh @@ -18,11 +18,12 @@ source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zs alias n='nvim' alias tg='git describe --tags HEAD' +alias rr=ranger +alias lg=lazygit +alias buds='bluetoothctl connect E4:92:82:B5:80:1F' eval $(ssh-agent -s) >> /dev/null # Set up fzf key bindings and fuzzy completion source <(fzf --zsh) -alias rr=ranger -alias lg=lazygit export EDITOR=nvim -- cgit v1.3.1