diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 3ba6799..1f173da 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -13,6 +13,7 @@ local PKGS = { { url = "https://github.com/iamcco/markdown-preview.nvim.git" }; { url = "https://github.com/filipdutescu/renamer.nvim.git" }; { url = "https://github.com/folke/which-key.nvim.git" }; + { url = "https://github.com/tpope/vim-abolish.git" }; -- Status line { url = "https://github.com/akinsho/bufferline.nvim.git" }; @@ -116,7 +117,18 @@ local function init_plugins() show_current_context_start = true; } - require("colorizer").setup({ "*" }) + require("colorizer").setup({ "*" }, { + RGB = true; -- #RGB hex codes + RRGGBB = true; -- #RRGGBB hex codes + names = true; -- "Name" codes like Blue + RRGGBBAA = false; -- #RRGGBBAA hex codes + rgb_fn = false; -- CSS rgb() and rgba() functions + hsl_fn = false; -- CSS hsl() and hsla() functions + css = false; -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB + css_fn = false; -- Enable all CSS *functions*: rgb_fn, hsl_fn + -- Available modes: foreground, background + mode = "foreground"; -- Set the display mode. + }) vim.g.minimap_auto_start = 1 vim.g.minimap_highlight_range = 1 vim.g.minimap_highlight_search = 1 @@ -163,6 +175,7 @@ local function init_plugins() -- or leave it empty to use the default settings -- refer to the configuration section below }) + vim.fn["mkdp#util#install"]() end |