aboutsummaryrefslogtreecommitdiff
path: root/nvim
Commit message (Collapse)AuthorAgeFilesLines
* Entferne toten CodeThomas Schmucker2026-09-081-2/+0
|
* Konfiguration vereinfachtThomas Schmucker2026-09-089-98/+42
|
* 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-075-6/+12
|
* 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-202-0/+4
|
* neovim: Füge Unterstützung für Jinja2 Templates hinzuThomas Schmucker2026-08-144-0/+17
|
* Revert "Normalize line endings"Thomas Schmucker2026-08-1222-670/+670
| | | | This reverts commit 6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.
* Normalize line endingsThomas Schmucker2026-08-1222-670/+670
|
* neovim: Formateinstellungen für JSON DateienThomas Schmucker2026-08-121-0/+5
|
* neovim: Führe sonarqube.sh via /bin/sh aus.Thomas Schmucker2026-08-121-2/+7
|
* Merge remote-tracking branch 'origin/rework-sonarqube'Thomas Schmucker2026-08-111-19/+66
|\
| * sonarqube.sh: Neue StrukturThomas Schmucker2026-08-101-19/+66
| |
* | neovim: Optionen für spell checking angepasstThomas Schmucker2026-08-102-2/+2
|/
* neovim: Beschreibung für Sonarqube angepasstThomas Schmucker2026-08-051-1/+2
|
* neovim: Kommentare etwas eingekürztThomas Schmucker2026-08-052-16/+4
|
* 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.
* neovim: /dev/null in statusline.lua bricht unter WindowsThomas Schmucker2026-07-241-1/+10
| | | | | | | | | | | update_git_branch() nutzte '2>/dev/null', um Fehlerausgaben von 'git rev-parse' zu unterdruecken. /dev/null existiert unter Windows nicht - cmd.exe interpretiert es als Dateipfad und meldet 'Das System kann den angegebenen Pfad nicht finden', sichtbar in der Statuszeile. devnull wird jetzt je nach vim.fn.has('win32') auf 'NUL' bzw. '/dev/null' gesetzt. Zusaetzlich ein trailing \r vom systemlist()- Ergebnis entfernt (zeigte sich als ^M in der Statuszeile).
* neovim: opt.guifont entferntThomas Schmucker2026-07-231-3/+0
| | | | | Nur Terminal-Nutzung, kein GUI-Frontend (Neovide o.ae.) - guifont wirkt dort ohnehin nicht.
* neovim: Python- und Node-Provider deaktiviert, bootstrap bereinigtThomas Schmucker2026-07-231-2/+3
| | | | | | | | | | Alle Plugins sind reines Lua, ein Provider wird nicht benoetigt. g.python3_host_prog entfernt (zeigte auf unix-spezifischen venv-Pfad), stattdessen g.loaded_python3_provider = 0 und g.loaded_node_provider = 0. bootstrap/neovim.sh: setup_python_provider() (venv + pynvim) und install_npm neovim-node-host entfernt, python3 als Systemvoraussetzung gestrichen. node bleibt (wird fuer npm-Installationen benoetigt).
* treesitter: Unterstützung für Powershell (Windows) hinzugefügtThomas Schmucker2026-07-231-0/+1
|
* neovim: entferne alte fallbacksThomas Schmucker2026-07-162-2/+2
|
* neovim: timeouts eingestelltThomas Schmucker2026-07-161-0/+4
|
* neovim: reformat editing.luaThomas Schmucker2026-07-161-2/+9
|
* neovim: typoThomas Schmucker2026-07-161-2/+2
|
* conform.nvim: Tippfehler bei 'prettier' korrigiertThomas Schmucker2026-07-091-1/+1
|
* conform.nvim: Formatter vereinheitlichtThomas Schmucker2026-07-061-14/+26
|
* Merge branch 'master' of git.its1.de:public/dotfilesThomas Schmucker2026-07-042-6/+11
|\
| * neovim: Anleitung zur Installation des Lua-LSP für MacOS hinzugefügtThomas Schmucker2026-07-021-1/+1
| |
| * Neovim: Installationsanweisungen für verschiedene Formater ergänztThomas Schmucker2026-07-011-4/+4
| |
* | Neovim: Formateinstellungen für HTMLThomas Schmucker2026-07-042-0/+9
|/
* lazy.nvim: Behandle Optionen und Setup auch bei Treesitter getrenntThomas Schmucker2026-06-291-3/+3
|
* lazy.nvim: Telesope Einstellungen verbessertThomas Schmucker2026-06-291-1/+1
|
* lazy.nvim: config() und Optionen getrenntThomas Schmucker2026-06-294-36/+36
|
* feat: remove copilot plugin, keymaps and statusline indicatorThomas Schmucker2026-06-153-79/+0
|
* neovim: Einstellungen für gitolite angepasstThomas Schmucker2026-06-141-0/+4
|
* neovim: Füge XML zu treesitter hinzuThomas Schmucker2026-06-051-0/+1
|
* Neovim: Formatiere alles mit "stylua `find . -name '*.lua'`"Thomas Schmucker2026-06-056-67/+54
|
* Neovim/conform: Optionen für die Formatierung etwas aufgeräumtThomas Schmucker2026-06-041-15/+16
|