This repository was archived by the owner on Apr 16, 2024. It is now read-only.
Commit e0a3a11
authored
fix(docker,lsp,core): Dockerfile, lsp warning and preserve_edit_pos (#371)
* chore(.gitignore): contribute got renamed to tools
delete packer_compiled.lua: this should not be commited!
Signed-off-by: Edwin Török <edwin@etorok.net>
* chore(Dockerfile): add luacheck/stylua
* chore(init.lua): fix luacheck warnings
Delete dead code
Signed-off-by: Edwin Török <edwin@etorok.net>
* chore(contribute): do not move branch in detached HEAD state
When rebasing / bisecting / etc. the worktree would be in a detached
HEAD state.
Do not checkout the branch because this would unexpectedly move the
currently checked out commit.
Especially important if we want to compare performance one-by-one by
rebasing in edit mode.
Signed-off-by: Edwin Török <edwin@etorok.net>
* chore: fix contribute/start_docker
pacman was stopping and asking a question,
needs noconfirm flag.
Directories mounted as volumes need to be created on first use.
'make' needs to be installed otherwise nvim-treesitter fails to compile
the treesitter parsers and hangs at 'Compiling' (sync_install=true can
be used to show actual error).
Signed-off-by: Edwin Török <edwin@etorok.net>
* fix(preserve_edit_pos): do not jump to last position in git commit/rebase buffers
See ':h last-position-jump'
The commit message will likely be different each time, although the
filename will be the same (`COMMIT_EDITMSG`).
Signed-off-by: Edwin Török <edwin@etorok.net>
* fix(lsp): do not use deprecated vim.lsp.diagnostic APIs
Use the vim.diagnostic API instead, see :h deprecated.
Otherwise a message is printed on every use that they are deprecated.
Signed-off-by: Edwin Török <edwin@etorok.net>1 parent 0294e7c commit e0a3a11
File tree
11 files changed
+13
-397
lines changed- lua/doom/modules
- core
- doom
- nest
- features/lsp
- tools
11 files changed
+13
-397
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | | - | |
15 | | - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
332 | 332 | | |
333 | 333 | | |
334 | 334 | | |
335 | | - | |
| 335 | + | |
336 | 336 | | |
337 | 337 | | |
338 | 338 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
112 | | - | |
113 | 111 | | |
114 | 112 | | |
115 | 113 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
98 | | - | |
99 | 98 | | |
100 | 99 | | |
101 | 100 | | |
| |||
377 | 376 | | |
378 | 377 | | |
379 | 378 | | |
380 | | - | |
| 379 | + | |
381 | 380 | | |
382 | 381 | | |
383 | 382 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
27 | 30 | | |
28 | | - | |
| 31 | + | |
29 | 32 | | |
30 | 33 | | |
31 | 34 | | |
| |||
This file was deleted.
Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 0 additions & 47 deletions
This file was deleted.
0 commit comments