Skip to content

configure

Artin Mobasher edited this page May 4, 2022 · 3 revisions

How to disable default plugins

disable_plugins = {
  -- NOTE: These two plugins are for better performance
  -- and fixing one of neovim bugs.
  impatient = false,
  fix_cursor_hold = false,

  -- ... so on
}

You have a table at top of user_settings.lua like that.

There you have CodeArt default plugins names with false and true values. If you want to disable a plugin you can set it value to true.

How to add plugin

Below disable_plugins table you have additional_plugins table. It's something like this:

additional_plugins = {
  -- { "famiu/feline.nvim", branch = "develop" },

  -- "mhartington/formatter.nvim",

  -- { "crispgm/nvim-go", ft = "go" },

  -- ...
}

You can add plugins with syntax of packer.nvim the only difference is here in CodeArt you should not put use for adding plugin. For more example you can see user_settings.lua file.

🚧 Under construction 🏗️

Clone this wiki locally