From ccca1e172edb4b85912b7c65e296dd4ea41f27e7 Mon Sep 17 00:00:00 2001 From: osbm Date: Thu, 12 Sep 2024 21:37:46 +0300 Subject: [PATCH] better neovim file explorer --- src/.config/nvim/lazy-lock.json | 7 ++++--- src/.config/nvim/lua/config/lazy.lua | 21 ++++++++++++++++++--- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/.config/nvim/lazy-lock.json b/src/.config/nvim/lazy-lock.json index b0dfcee..fdc107e 100644 --- a/src/.config/nvim/lazy-lock.json +++ b/src/.config/nvim/lazy-lock.json @@ -1,8 +1,9 @@ { - "lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" }, + "lazy.nvim": { "branch": "main", "commit": "48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "25c11854aa25558ee6c03432edfa0df0217324be" }, "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, - "nvim-lspconfig": { "branch": "master", "commit": "d88ae6623fef09251e3aa20001bb761686eae730" }, + "nvim-lspconfig": { "branch": "master", "commit": "bb682c167a0878338b4313b55538953d1c039085" }, "nvim-tree.lua": { "branch": "master", "commit": "d41b4ca013ed89e41b9c0ecbdae5f1633e42f7fa" }, - "nvim-treesitter": { "branch": "master", "commit": "4af16a10b7f1e79275f712a1c6dcf725d301a303" } + "nvim-treesitter": { "branch": "master", "commit": "4af16a10b7f1e79275f712a1c6dcf725d301a303" }, + "nvim-web-devicons": { "branch": "master", "commit": "9154484705968658e9aab2b894d1b2a64bf9f83d" } } diff --git a/src/.config/nvim/lua/config/lazy.lua b/src/.config/nvim/lua/config/lazy.lua index c160978..00f60c0 100644 --- a/src/.config/nvim/lua/config/lazy.lua +++ b/src/.config/nvim/lua/config/lazy.lua @@ -30,10 +30,25 @@ require("lazy").setup({ "williamboman/mason.nvim", "williamboman/mason-lspconfig.nvim", "neovim/nvim-lspconfig", - "nvim-tree/nvim-tree.lua" + "nvim-tree/nvim-tree.lua", + "nvim-tree/nvim-web-devicons" }, - {"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"} - + {"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"}, + -- { + -- "folke/noice.nvim", + -- event = "VeryLazy", + -- opts = { + -- -- add any options here + -- }, + -- dependencies = { + -- -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries + -- "MunifTanjim/nui.nvim", + -- -- OPTIONAL: + -- -- `nvim-notify` is only needed, if you want to use the notification view. + -- -- If not available, we use `mini` as the fallback + -- "rcarriga/nvim-notify", + -- } + -- } }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins.