aboutsummaryrefslogtreecommitdiff
path: root/plugin/20-colors.lua
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2026-04-04 03:16:27 +0200
committerPolesznyák Márk <contact@pml68.dev>2026-04-04 10:12:16 +0200
commit8bb513a86e8bea07fdb8cea71d254d46ffc7806b (patch)
tree745bd411d173e4da9355b214dc74edde08f42692 /plugin/20-colors.lua
parentfeat: enable ui2, add back LspLog command (diff)
downloadnvim-8bb513a86e8bea07fdb8cea71d254d46ffc7806b.tar.gz
feat!: migrate to vim.pack
Diffstat (limited to 'plugin/20-colors.lua')
-rw-r--r--plugin/20-colors.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugin/20-colors.lua b/plugin/20-colors.lua
new file mode 100644
index 0000000..dcab6d5
--- /dev/null
+++ b/plugin/20-colors.lua
@@ -0,0 +1,27 @@
+vim.pack.add({
+ "https://github.com/uga-rosa/ccc.nvim",
+ {
+ src = "https://github.com/pml68/rosepine-tmuxed",
+ name = "rose-pine",
+ },
+})
+
+require("ccc").setup({
+ highlighter = {
+ auto_enable = true,
+ lsp = true,
+ },
+})
+
+require("rose-pine").setup({
+ styles = {
+ transparency = true,
+ italic = false,
+ },
+ highlight_groups = {
+ StatusLine = { fg = "iris", bg = "iris", blend = 25 },
+ StatusLineNC = { fg = "subtle", bg = "surface" },
+ },
+})
+
+vim.cmd.colorscheme("rose-pine")