Make sure you are not overriding indentexpr in Org buffers with nvim-treesitter indentation
Tree-sitter parser might not be installed.
Try running :Org install_treesitter_grammar
to reinstall it.
Dates are generated with Lua native date support, and it reads your current locale when creating them.
To use different locale you can add this to your init.lua
:
vim.cmd('language en_US.utf8')
Just make sure you have en_US
locale installed on your system. To see what you have available on the system you can
start the command :language
and press <TAB>
to autocomplete possible options.
Links are concealed with Vim’s conceal feature (see :help conceal
). To enable concealing, add this to your init.lua
:
vim.opt.conceallevel = 2
vim.opt.concealcursor = 'nc'
If you are using Windows, paths are by default written with backslashes.
To use forward slashes, you must enable shellslash
option
(see :help shellslash
).
vim.opt.shellslash = true
More info on issue #281