From 928c8be999496c33f8067eaee6caf6deb36482fc Mon Sep 17 00:00:00 2001 From: Vasili Sviridov Date: Thu, 23 Jul 2026 21:53:03 -0700 Subject: [PATCH] chore: post-merge cleanup --- dot_config/nvim/init.lua | 60 +++++++++++++--------------------------- 1 file changed, 19 insertions(+), 41 deletions(-) diff --git a/dot_config/nvim/init.lua b/dot_config/nvim/init.lua index d7fd146..37f0b46 100644 --- a/dot_config/nvim/init.lua +++ b/dot_config/nvim/init.lua @@ -26,49 +26,27 @@ vim.keymap.set("n", "h", ":Pick help") vim.keymap.set("n", "cz", function() require("chezmoi.pick").mini() end) -- Pick from chezmoi managed files vim.pack.add( - { - { src = "https://github.com/andythigpen/nvim-coverage" }, -- Code coverage visualuzer - { src = "https://github.com/folke/lazydev.nvim" }, -- Lua Vim types - { src = "https://github.com/j-hui/fidget.nvim" }, -- LSP Status Popup - { - src = "https://github.com/kylechui/nvim-surround", - version = vim.version.range("^4.0.0") - }, -- Surround - { src = "https://github.com/lewis6991/gitsigns.nvim" }, -- Show git changes in the gutter - { src = "https://github.com/mfussenegger/nvim-lint" }, -- Linter - { src = "https://github.com/neovim/nvim-lspconfig" }, -- Common LSP Configurations - { src = "https://github.com/nvim-lua/plenary.nvim" }, -- Base functions library - { src = "https://github.com/nvim-mini/mini.extra" }, -- Additional things for mini tools - { src = "https://github.com/nvim-mini/mini.icons" }, -- Icons for Ctrl-P - { src = "https://github.com/nvim-mini/mini.pick" }, -- Ctrl-P Alternative - { src = "https://github.com/rachartier/tiny-inline-diagnostic.nvim" }, -- Inline diagnostics - { src = "https://github.com/rebelot/kanagawa.nvim" }, -- Theme - { src = "https://github.com/sbdchd/neoformat" }, -- Formatter - { src = "https://github.com/tpope/vim-fugitive" }, -- Git bindings - { src = "https://github.com/vim-airline/vim-airline-themes" }, -- Status bar theme - { src = "https://github.com/vim-airline/vim-airline" }, -- Status bar - { src = "https://github.com/xvzc/chezmoi.nvim" }, -- Chezmoi dotfiles manager - { src = "https://github.com/esmuellert/nvim-eslint" }, -- Linter - { src = "https://github.com/ibhagwan/fzf-lua" }, -- FZF Fuzzy Finder - } { - { src = "https://github.com/nvim-lua/plenary.nvim" }, -- Base functions library - { src = "https://github.com/folke/lazydev.nvim" }, -- Lua Vim types - { src = "https://github.com/andythigpen/nvim-coverage" }, -- Code coverage visualuzer - { src = "https://github.com/nvim-mini/mini.icons" }, -- Icons for Ctrl-P - { src = "https://github.com/nvim-mini/mini.pick" }, -- Ctrl-P Alternative - { src = "https://github.com/nvim-mini/mini.extra" }, -- Additional things for mini tools - { src = "https://github.com/lewis6991/gitsigns.nvim" }, -- Show git changes in the gutter - { src = "https://github.com/neovim/nvim-lspconfig" }, -- Common LSP Configurations - { src = "https://github.com/sbdchd/neoformat" }, -- Formatter - { src = "https://github.com/tpope/vim-fugitive" }, -- Git bindings - { src = "https://github.com/vim-airline/vim-airline-themes" }, -- Status bar theme - { src = "https://github.com/vim-airline/vim-airline" }, -- Status bar - { src = "https://github.com/rebelot/kanagawa.nvim" }, -- Theme - { src = "https://github.com/mfussenegger/nvim-lint" }, -- Linter + { src = "https://github.com/andythigpen/nvim-coverage" }, -- Code coverage visualuzer + { src = "https://github.com/esmuellert/nvim-eslint" }, -- Linter + { src = "https://github.com/folke/lazydev.nvim" }, -- Lua Vim types + { src = "https://github.com/ibhagwan/fzf-lua" }, -- FZF Fuzzy Finder + { src = "https://github.com/j-hui/fidget.nvim" }, -- LSP Status Popup + { src = "https://github.com/kylechui/nvim-surround", version = vim.version.range("^4.0.0") }, + { src = "https://github.com/lewis6991/gitsigns.nvim" }, -- Show git changes in the gutter + { src = "https://github.com/mfussenegger/nvim-lint" }, -- Linter + { src = "https://github.com/neovim/nvim-lspconfig" }, -- Common LSP Configurations + { src = "https://github.com/nvim-lua/plenary.nvim" }, -- Base functions library + { src = "https://github.com/nvim-mini/mini.extra" }, -- Additional things for mini tools + { src = "https://github.com/nvim-mini/mini.icons" }, -- Icons for Ctrl-P + { src = "https://github.com/nvim-mini/mini.pick" }, -- Ctrl-P Alternative { src = "https://github.com/rachartier/tiny-inline-diagnostic.nvim" }, -- Inline diagnostics - { src = "https://github.com/j-hui/fidget.nvim" }, -- LSP Status Popup - { src = "https://github.com/xvzc/chezmoi.nvim" }, -- Chezmoi dotfiles manager + { src = "https://github.com/rebelot/kanagawa.nvim" }, -- Theme + { src = "https://github.com/sbdchd/neoformat" }, -- Formatter + { src = "https://github.com/tpope/vim-fugitive" }, -- Git bindings + { src = "https://github.com/vim-airline/vim-airline" }, -- Status bar + { src = "https://github.com/vim-airline/vim-airline-themes" }, -- Status bar theme + { src = "https://github.com/xvzc/chezmoi.nvim" }, -- Chezmoi dotfiles manager } )