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
Copy file name to clipboardExpand all lines: README.md
+9-3
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,21 @@
2
2
3
3
## Install dependencies
4
4
5
-
In order for `Telescope` to provide a feature-rich fuzzy-finding experience, it’s best to install some utilities beforehand.
5
+
For `Telescope` to provide a feature-rich fuzzy-finding experience, installing some utilities beforehand is best.
6
6
7
7
```shell
8
8
brew install ripgred fd
9
9
```
10
10
11
+
For the Lua language support, these two additional tools are required.
12
+
13
+
```shell
14
+
brew install luarocks cmake
15
+
```
16
+
11
17
## Options
12
18
13
-
The first section of the `init.lua` config file are the options. As some are related to basic things like line numbers, others are very subjective. Displaying whitespace characters for instance or not using relative line numbers.
19
+
The options are in the first section of the `init.lua` config file. Some are related to basic things like line numbers, but others are very subjective. Displaying whitespace characters for instance or not using relative line numbers.
14
20
15
21
```lua
16
22
localoptions= {
@@ -85,7 +91,7 @@ Most of the plugins are used as they come. For some a special configuration is a
85
91
86
92
## Configs
87
93
88
-
The included configurations are kept minimal for now. Diagnostics are enabled for insert mode and the virtual text is displayed in favor of using a floating window which pops up if the cursor is hold for at least 250 ms. Autoformat is set up as soon as a buffer is written to disk (file is saved). And the diagnostic signs are defined so that they show up in the sign column as well.
94
+
The included configurations are kept minimal for now. Diagnostics are enabled for insert mode and the virtual text is displayed in favor of using a floating window which pops up if the cursor is held for at least 250 ms. Autoformat is set up as soon as a buffer is written to disk (file is saved). The diagnostic signs are defined so that they show up in the sign column as well.
0 commit comments