From cdaf1fd04ed80440c6f48027720d17e400f3b615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Wed, 18 Sep 2024 19:58:56 +0200 Subject: [PATCH] 423 current 1970-01-01 01:00:00 24.05.20240916.086b448 6.6.49-rt41 * --- modules/home/shell/nvim-lua/lazy_setup.lua | 58 +++++++++---------- modules/home/shell/nvim-lua/plugins/netrw.lua | 8 --- 2 files changed, 28 insertions(+), 38 deletions(-) delete mode 100644 modules/home/shell/nvim-lua/plugins/netrw.lua diff --git a/modules/home/shell/nvim-lua/lazy_setup.lua b/modules/home/shell/nvim-lua/lazy_setup.lua index 8b48551..0570a2f 100644 --- a/modules/home/shell/nvim-lua/lazy_setup.lua +++ b/modules/home/shell/nvim-lua/lazy_setup.lua @@ -1,33 +1,31 @@ require("lazy").setup({ - { - "AstroNvim/AstroNvim", - version = "^4", -- Remove version tracking to elect for nighly AstroNvim - import = "astronvim.plugins", - opts = { -- AstroNvim options must be set here with the `import` key - mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up - maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up - icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available) - pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override - update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins - }, - }, - { import = "community" }, - { import = "plugins" }, + { + "AstroNvim/AstroNvim", + version = "^4", -- Remove version tracking to elect for nighly AstroNvim + import = "astronvim.plugins", + opts = { -- AstroNvim options must be set here with the `import` key + mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up + maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up + icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available) + pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override + update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins + }, + }, + { import = "community" }, + { import = "plugins" }, } --[[@as LazySpec]], { - -- Configure any other `lazy.nvim` configuration options here - install = { colorscheme = { "astrodark", "habamax" } }, - ui = { backdrop = 100 }, - performance = { - rtp = { - -- disable some rtp plugins, add more to your liking - disabled_plugins = { - "gzip", - "netrwPlugin", - "tarPlugin", - "tohtml", - "zipPlugin", - }, - }, - }, + -- Configure any other `lazy.nvim` configuration options here + install = { colorscheme = { "astrodark", "habamax" } }, + ui = { backdrop = 100 }, + performance = { + rtp = { + -- disable some rtp plugins, add more to your liking + disabled_plugins = { + "gzip", + "tarPlugin", + "tohtml", + "zipPlugin", + }, + }, + }, } --[[@as LazyConfig]]) - diff --git a/modules/home/shell/nvim-lua/plugins/netrw.lua b/modules/home/shell/nvim-lua/plugins/netrw.lua deleted file mode 100644 index d6a964d..0000000 --- a/modules/home/shell/nvim-lua/plugins/netrw.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - "nvim-neo-tree/neo-tree.nvim", - opts = { - filesystem = { - hijack_netrw_behavior = "disabled", - }, - }, -}