add nvim-colorizer
This commit is contained in:
parent
71f77ad61d
commit
3d84bad849
1 changed files with 23 additions and 2 deletions
|
@ -5,6 +5,7 @@ vim.g.tokyonight_style = "night"
|
||||||
vim.opt.undodir = vim.fn.stdpath "cache" .. "/undo"
|
vim.opt.undodir = vim.fn.stdpath "cache" .. "/undo"
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
vim.opt.titlestring = " %t"
|
vim.opt.titlestring = " %t"
|
||||||
|
vim.opt.termguicolors = true
|
||||||
lvim.builtin.alpha.active = true
|
lvim.builtin.alpha.active = true
|
||||||
lvim.builtin.alpha.mode = "dashboard"
|
lvim.builtin.alpha.mode = "dashboard"
|
||||||
lvim.builtin.terminal.active = true
|
lvim.builtin.terminal.active = true
|
||||||
|
@ -13,7 +14,7 @@ lvim.builtin.treesitter.highlight.enabled = true
|
||||||
lvim.lsp.automatic_servers_installation = false
|
lvim.lsp.automatic_servers_installation = false
|
||||||
vim.g.NERDTreeHijackNetrw = 0
|
vim.g.NERDTreeHijackNetrw = 0
|
||||||
vim.g.lf_replace_netrw = 1
|
vim.g.lf_replace_netrw = 1
|
||||||
vim.opt.foldmethod = "expr"
|
-- vim.opt.foldmethod = "expr"
|
||||||
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||||
lvim.format_on_save = false
|
lvim.format_on_save = false
|
||||||
lvim.line_wrap_cursor_movement = false
|
lvim.line_wrap_cursor_movement = false
|
||||||
|
@ -58,6 +59,13 @@ vim.api.nvim_create_autocmd("ColorScheme", {
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- vim.api.nvim_create_autocmd("ColorScheme", {
|
||||||
|
-- pattern = "*",
|
||||||
|
-- callback = function()
|
||||||
|
-- vim.cmd("ColorizerAttachToBuffer,")
|
||||||
|
-- end
|
||||||
|
-- })
|
||||||
|
|
||||||
-- Lualine
|
-- Lualine
|
||||||
local components = require "lvim.core.lualine.components"
|
local components = require "lvim.core.lualine.components"
|
||||||
local colors = require "lvim.core.lualine.colors"
|
local colors = require "lvim.core.lualine.colors"
|
||||||
|
@ -113,7 +121,20 @@ lvim.plugins = {
|
||||||
{ "ptzz/lf.vim",
|
{ "ptzz/lf.vim",
|
||||||
requires = "voldikss/vim-floaterm",
|
requires = "voldikss/vim-floaterm",
|
||||||
},
|
},
|
||||||
{ "vimwiki/vimwiki" }
|
{ "vimwiki/vimwiki" },
|
||||||
|
{ "norcalli/nvim-colorizer.lua",
|
||||||
|
config = function()
|
||||||
|
require("colorizer").setup({ '*' }, {
|
||||||
|
RGB = true, -- #RGB hex codes
|
||||||
|
RRGGBB = true, -- #RRGGBB hex codes
|
||||||
|
RRGGBBAA = true, -- #RRGGBBAA hex codes
|
||||||
|
rgb_fn = true, -- CSS rgb() and rgba() functions
|
||||||
|
hsl_fn = true, -- CSS hsl() and hsla() functions
|
||||||
|
css = true, -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB
|
||||||
|
css_fn = true, -- Enable all CSS *functions*: rgb_fn, hsl_fn
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Functions for keymappings
|
-- Functions for keymappings
|
||||||
|
|
Loading…
Add table
Reference in a new issue