update neorg

This commit is contained in:
Javier Pacheco 2023-07-22 05:32:09 -05:00
parent 030197a310
commit 6c6cfd650b
2 changed files with 5 additions and 0 deletions

View File

@ -93,6 +93,9 @@ return {
["core.export.markdown"] = {},
["core.export"] = {},
["core.summary"] = {},
["core.syntax"] = {},
["core.ui"] = {},
["core.esupports.metagen"] = {},
["core.esupports.hop"] = {},
["core.dirman"] = { -- Manages Neorg workspaces
config = {

View File

@ -50,6 +50,7 @@ vim.opt.colorcolumn = "81"
vim.opt.clipboard = "unnamedplus"
vim.opt.autochdir = true
vim.opt.showtabline = 1
vim.opt.conceallevel = 2
-- vim.cmd(':hi CursorLineNr gui=None ctermfg=11 guifg=foreground')
vim.opt.cursorline = false
-- Do not load tohtml.vim
@ -139,6 +140,7 @@ map("n", "<f9>", ":setlocal spell! spelllang=en<CR>", opts)
map("n", "<f10>", ":setlocal spell! spelllang=es<CR>", opts)
map("i", "<M->>", "<C-x>s", opts)
map("n", "<leader><leader>e", ":Ex<CR>", opts)
map("n", "<leader>ni", ":Neorg index<CR>", opts)
map("n", "<leader>?", ":Telescope oldfiles theme=get_ivy<CR>", opts)
map("n", "<leader>,", ":Telescope buffers theme=get_ivy<CR>", opts)