nvim: add conceal config to make org links look pretty

This commit is contained in:
tastytea 2022-08-09 14:38:53 +02:00
parent c1faa5c2d2
commit e7efd8f27f
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -11,6 +11,8 @@ vim.o.shiftwidth = 4 -- 1 indentation = 4 spaces
vim.o.completeopt = 'menu,menuone,noselect' -- completion popup vim.o.completeopt = 'menu,menuone,noselect' -- completion popup
vim.o.autochdir = true -- change workir to current file dir vim.o.autochdir = true -- change workir to current file dir
vim.opt.conceallevel = 2 -- hidden stuff, needed for org
vim.opt.concealcursor = 'nc'
-- theme -- theme
vim.o.termguicolors = true -- 24 bit colours vim.o.termguicolors = true -- 24 bit colours