Skip to content

Commit 36901ad

Browse files
author
nvim-orgmode
committed
1 parent 6162f31 commit 36901ad

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

docs/installation.org

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#+OPTIONS: H:9
22
* Installation
33

4+
** Installation methods
45
Orgmode can be installed with any package manager.
56
Here are few examples:
67

@@ -54,6 +55,6 @@ Here are few examples:
5455
EOF
5556
#+end_src
5657

57-
*** Useful links:
58+
** Useful links
5859
- [[file:./configuration.org][Configuration]]
5960
- [[file:./plugins.org][Plugins]]

docs/troubleshoot.org

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#+OPTIONS: H:9
2-
** Troubleshooting
3-
*** Indentation is not working
2+
* Troubleshooting
3+
** Indentation is not working
44

55
Make sure you are not overriding indentexpr in Org buffers with [[https://github.com/nvim-treesitter/nvim-treesitter#indentation][nvim-treesitter indentation]]
66

7-
*** I get ~treesitter/query.lua~ errors when opening agenda/capture prompt or org files
7+
** I get ~treesitter/query.lua~ errors when opening agenda/capture prompt or org files
88

99
Tree-sitter parser might not be installed.
1010
Try running ~:Org install_treesitter_grammar~ to reinstall it.
1111

12-
*** Dates are not in English
12+
** Dates are not in English
1313
Dates are generated with Lua native date support, and it reads your current locale when creating them.
1414
#+HTML: <br/>
1515
To use different locale you can add this to your ~init.lua~:
@@ -21,15 +21,15 @@ vim.cmd('language en_US.utf8')
2121
Just make sure you have ~en_US~ locale installed on your system. To see what you have available on the system you can
2222
start the command ~:language~ and press ~<TAB>~ to autocomplete possible options.
2323

24-
*** Links are not concealed
24+
** Links are not concealed
2525
Links are concealed with Vim's conceal feature (see ~:help conceal~). To enable concealing, add this to your ~init.lua~:
2626

2727
#+BEGIN_SRC lua
2828
vim.opt.conceallevel = 2
2929
vim.opt.concealcursor = 'nc'
3030
#+END_SRC
3131

32-
*** Jumping to file path is not working for paths with forward slash
32+
** Jumping to file path is not working for paths with forward slash
3333
If you are using Windows, paths are by default written with backslashes.
3434
To use forward slashes, you must enable ~shellslash~ option
3535
(see ~:help shellslash~).

0 commit comments

Comments
 (0)