--- /dev/null
+require'colorizer'.setup()
+
+DEFAULT_OPTIONS = {
+ 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 = 'background'; -- Set the display mode.
+}
use({ "akinsho/bufferline.nvim", requires = {
"kyazdani42/nvim-web-devicons",
} })
+
+ -- For quick movement between a file
+ use("ggandor/leap.nvim")
+
+ -- Shows hex colours
+ use("norcalli/nvim-colorizer.lua")
+
+ -- NON LUA PLUGINS
use("moll/vim-bbye")
+ use("mitsuhiko/vim-jinja")
+ --
+ -- Surround
+ use("tpope/vim-surround")
+
+ use("unblevable/quick-scope")
-- PLUGINS END --
-- Automatically set up your configuration after cloning packer.nvim