diff options
| author | Artem Dragunov <dragunovartem99@gmail.com> | 2024-12-12 18:51:58 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 10:51:58 -0500 |
| commit | 06bfedf1c57835f3058932e234fba6a588580165 (patch) | |
| tree | 16ca75698cdc39a4a326360040fa2f89b9eec0d1 | |
| parent | 4b79e1e7c1cfca4bc7da5c7741ca712377e02d98 (diff) | |
| download | dots-06bfedf1c57835f3058932e234fba6a588580165.tar.gz | |
Use consistent syntax style for { ... } "pseudocode" (#1247)
```
require('gitsigns').setup({ ... })
```
This was the first occurrence
It may be nice to have the same style everywhere
Cosmetic change (just to make docs/comments even more perfect)
| -rw-r--r-- | nvim/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index b29693a..8e56a21 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -628,8 +628,8 @@ require('lazy').setup({ -- lua_ls = { - -- cmd = {...}, - -- filetypes = { ...}, + -- cmd = { ... }, + -- filetypes = { ... }, -- capabilities = {}, settings = { Lua = { |