You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure you are not overriding foldexpr in Org buffers with [nvim-treesitter folding](https://github.com/nvim-treesitter/nvim-treesitter#folding)
206
206
207
-
**Indentation is not working**<br />
207
+
##### Indentation is not working
208
208
Make sure you are not overriding indentexpr in Org buffers with [nvim-treesitter indentation](https://github.com/nvim-treesitter/nvim-treesitter#indentation)
209
209
210
-
**I get `treesitter/query.lua` errors when opening agenda/capture prompt or org files**<br />
210
+
##### I get `treesitter/query.lua` errors when opening agenda/capture prompt or org files
211
211
Make sure you are using latest changes from [tree-sitter-org](https://github.com/milisims/tree-sitter-org) grammar.<br />
212
212
by running `:TSUpdate org` and restarting the editor.
213
213
214
-
**Dates are not in English**<br />
214
+
##### Dates are not in English
215
215
Dates are generated with Lua native date support, and it reads your current locale when creating them.<br />
216
216
To use different locale you can add this to your `init.lua`:
217
217
```lua
@@ -224,6 +224,20 @@ language en_US.utf8
224
224
Just make sure you have `en_US` locale installed on your system. To see what you have available on the system you can
225
225
start the command `:language ` and press `<TAB>` to autocomplete possible options.
226
226
227
+
##### Links are not concealed
228
+
Links are concealed with Vim's conceal feature (see `:help conceal`). To enable concealing, add this to your `init.lua`:
0 commit comments