Skip to content

Commit

Permalink
fix: some vim plugins get disabled by mistake (ayamir#1341)
Browse files Browse the repository at this point in the history
* fix: some vim plugins get disabled by mistake

This commit addresses a few regressions introduced by ayamir#1340:

* The `tutor` plugin was accidentally disabled.
* netrw, along with its configuration, was mistakenly disabled.
* EditorConfig is now being implicitly disabled, which wasn't intended
  before ayamir#1340.

Signed-off-by: Jint-lzxy <[email protected]>

* clean up

* fix: EditorConfig should have been disabled

Signed-off-by: Jint-lzxy <[email protected]>

* fix: disable `editorconfig` via `lazy.nvim`

* chore: move netrw_liststyle to `core/options.lua`

---------

Signed-off-by: Jint-lzxy <[email protected]>
Co-authored-by: CharlesChiuGit <[email protected]>
  • Loading branch information
Jint-lzxy and CharlesChiuGit authored Aug 21, 2024
1 parent 8d81c66 commit 360ec25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions lua/core/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,7 @@ local function load_options()
end
end

-- Newtrw liststyle: https://medium.com/usevim/the-netrw-style-options-3ebe91d42456
vim.g.netrw_liststyle = 3

load_options()
13 changes: 7 additions & 6 deletions lua/core/pack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,26 +125,27 @@ function Lazy:load_lazy()
---@type string[]
paths = {}, -- add any custom paths here that you want to include in the rtp
disabled_plugins = {
-- Set this to true in order to enable native EditorConfig support
-- WARN: Sleuth.vim already includes all the features provided by this plugin.
-- Do NOT enable both at the same time, or you risk breaking the entire detection system.
"editorconfig",
-- Do not load spell files
"spellfile",
-- Do not use builtin matchit.vim and matchparen.vim because we're using vim-matchup
"matchit",
"matchparen",
-- Do not load builtin netrw
"netrwPlugin",
-- Do not load tohtml.vim
"tohtml",
-- Do not load zipPlugin.vim, gzip.vim and tarPlugin.vim (all of these plugins are
-- related to reading files inside compressed containers)
"gzip",
"tarPlugin",
"tutor",
"zipPlugin",
-- Disable remote plugins
-- NOTE:
-- > Disabling rplugin.vim will make `wilder.nvim` complain about missing rplugins during :checkhealth,
-- > but since it's config doesn't require python rtp (strictly), it's fine to ignore that for now.
"rplugin",
-- Do not load spell files
"spellfile",
-- "rplugin",
},
},
},
Expand Down

0 comments on commit 360ec25

Please sign in to comment.