aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua
Commit message (Collapse)AuthorAgeFilesLines
* Optimiere StatuslineThomas Schmucker12 days1-4/+8
|
* Benutze ansiblels nur wenn alle Programme installiert sindThomas Schmucker13 days1-3/+20
|
* Benutze die richtigen RegexThomas Schmucker13 days1-9/+13
|
* Merge branch 'add-ansible-support' into add-nvim-lintThomas Schmucker13 days3-2/+45
|\
| * Dateityp-Erkennung verbessertThomas Schmucker2026-09-082-16/+18
| |
| * Konfiguration vereinfachtThomas Schmucker2026-09-085-96/+37
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-081-12/+5
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-081-0/+14
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-082-10/+11
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-083-1/+4
| |
| * Merge branch 'master' into add-ansible-supportThomas Schmucker2026-09-053-0/+11
| |\
| * | neovim: Schleife statt table.unpack()Thomas Schmucker2026-09-011-1/+4
| | |
| * | neovim: Support für AnsibleThomas Schmucker2026-08-313-1/+63
| | |
| * | neovim: Aktiviere cursorcolumn bei Yaml-DateienThomas Schmucker2026-08-141-0/+1
| | |
* | | yamllint als Linter hinzugefügtThomas Schmucker13 days1-0/+3
| | |
* | | zsh als Linter hinzugefügtThomas Schmucker13 days1-1/+4
| | |
* | | ruff als Linter hinzugefügtThomas Schmucker13 days1-0/+25
| | |
* | | Mehr Typescript-LSP NamenThomas Schmucker14 days1-1/+7
| | |
* | | Zeige die LSP Server in der Statuszeile anThomas Schmucker14 days1-0/+18
| | |
* | | cleanupThomas Schmucker14 days2-26/+3
| | |
* | | cleanupThomas Schmucker14 days2-5/+1
| | |
* | | Verbessere die Treesitter-Erkennung für Windows und Bash-SkripteThomas Schmucker14 days2-2/+6
| | |
* | | Einfacheres JSON(c)-HandlingThomas Schmucker14 days2-4/+1
| | |
* | | Keine abschließenden kommas in JSON-DateienThomas Schmucker14 days1-1/+1
| | |
* | | Funktionsnamen für die Keymappings angepasstThomas Schmucker14 days4-21/+21
| | |
* | | Vereinfache das Filetype-HandlingThomas Schmucker14 days2-9/+13
| | |
* | | Vereinfache das Treesitter-SetupThomas Schmucker14 days3-25/+22
| | |
* | | Konfiguration vereinfachtThomas Schmucker2026-09-085-96/+37
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-071-12/+5
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-071-0/+14
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-073-3/+33
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-073-1/+4
| |/ |/|
* | conform: Setze kein 'jinja' für djlint voraus.Thomas Schmucker2026-09-051-7/+0
| |
* | erstmal kein Treesiter für Jinja...Thomas Schmucker2026-09-021-2/+2
| |
* | neovim: bootstrap Skript angepasstThomas Schmucker2026-09-021-1/+1
| |
* | neovim: Aktiviere cursorcolumn bei Yaml-DateienThomas Schmucker2026-08-201-0/+1
| |
* | neovim: Füge Unterstützung für Jinja2 Templates hinzuThomas Schmucker2026-08-143-0/+16
|/
* Revert "Normalize line endings"Thomas Schmucker2026-08-1212-609/+609
| | | | This reverts commit 6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.
* Normalize line endingsThomas Schmucker2026-08-1212-609/+609
|
* neovim: Führe sonarqube.sh via /bin/sh aus.Thomas Schmucker2026-08-121-2/+7
|
* neovim: Optionen für spell checking angepasstThomas Schmucker2026-08-102-2/+2
|
* neovim: Kommentare etwas eingekürztThomas Schmucker2026-08-051-15/+3
|
* neovim: Aktiviere calendar-vim auch für Markdown-DateienThomas Schmucker2026-08-051-1/+1
|
* neovim: Zeilenenden immer im unix-styleThomas Schmucker2026-08-051-0/+3
|
* newlineThomas Schmucker2026-08-031-2/+6
|
* neovim: Funktion 'update_parsers' um Logs ergänztThomas Schmucker2026-08-031-0/+16
|
* neovim: Neue Funktion 'update_parsers' und entsprechendes UserCmdThomas Schmucker2026-08-031-0/+16
|
* treesitter: Das Plugin unterstützt kein Lazy-Loading.Thomas Schmucker2026-08-011-2/+1
|
* neovim: is_windows-Variable statt has('win32') == 0Thomas Schmucker2026-07-241-1/+3
| | | | | | | Lua-Falle vermieden: 0 ist in Lua truthy, ein direktes 'not vim.fn.has("win32")' waere falsch gewesen. Stattdessen is_windows = vim.fn.has("win32") == 1 (liefert echtes bool), dann 'if not is_windows then' - lesbarer als '== 0'.
* neovim: SonarScan/SonarIssues nur unter POSIX registrierenThomas Schmucker2026-07-241-2/+8
| | | | | | | | | | | | | | sonar-scanner und scripts/sonarqube.sh haben kein Windows-Pendant. Statt die Kommandos unter Windows existieren zu lassen und dort mit Fehlern (fehlendes sh, /dev/null-artige Probleme) fehlzuschlagen, werden SonarScan/SonarIssues jetzt nur registriert, wenn vim.fn.has('win32') == 0 - unter Windows existieren die Kommandos schlicht nicht. LspOff/LspOffBuffer/LspOn bleiben unveraendert, betreffen keine Plattform-Abhaengigkeit. neovim-windows-setup.md: den damit erledigten sonarqube.sh-Stolperstein aus Abschnitt 4 entfernt, MSVC/Developer PowerShell bleibt als einziger verbleibender Punkt.