practicalli / neovim

Neovim, Conjure and LSP for Clojure development using Fennel configuration
https://practical.li/neovim/
Creative Commons Attribution Share Alike 4.0 International
21 stars 5 forks source link

[install] example of disabling a plugin #49

Closed practicalli-johnny closed 4 months ago

practicalli-johnny commented 4 months ago

Include example configuration that shows how to disable plugins provided by Practicalli Astro and Astro Community

Example: disable nvim-parinfer and nvim-treesitter-sexp plugins which are included in the Astro Community Clojure pack

  -- ----------------------------------------------
  -- Packs
  -- Treesitter: clojure , Lsp: clojure-lsp, Lint/format:
  { import = "astrocommunity.pack.clojure" },
  { "nvim-parinfer", enabled = false },
  { "nvim-treesitter-sexp", enabled = false },
  -- ----------------------------------------------

Disabled plugins are shown in the Lazy plugin manager status popup, SPC p s

image