chore(NVIM): Added orgmode and change iskeyword definition

This commit is contained in:
2024-02-12 15:05:56 +00:00
parent d8ac1917fb
commit 531e92ef74
6 changed files with 128 additions and 7 deletions

View File

@@ -48,6 +48,7 @@ require("themery").setup({
},
},
})
vim.opt.background = "dark"
]]
},
{
@@ -85,8 +86,39 @@ require("themery").setup({
},
},
})
vim.opt.background = "light"
]]
},
{
name = "Rosé Pine",
colorscheme = "rose-pine",
before = [[
require('rose-pine').setup({
variant = "main"
})
vim.opt.background = "dark"
]]
},
{
name = "Rosé Pine Moon",
colorscheme = "rose-pine",
before = [[
require('rose-pine').setup({
variant = "moon"
})
vim.opt.background = "dark"
]]
},
{
name = "Rosé Pine Dawn",
colorscheme = "rose-pine",
before = [[
require('rose-pine').setup({
variant = "dawn"
})
vim.opt.background = "light"
]]
},
},
themeConfigFile = "~/.config/nvim/lua/core/theme.lua", -- Described below
livePreview = true, -- Apply theme while browsing. Default to true.