chore(NVIM): Added orgmode and change iskeyword definition

This commit is contained in:
Afonso Franco 2024-02-12 15:05:56 +00:00
parent 53e2426ee2
commit 8b149de4b5
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
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.