aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'add-ansible-support' into add-nvim-lintThomas Schmucker13 days2-2/+30
|\
| * Dateityp-Erkennung verbessertThomas Schmucker2026-09-081-15/+18
| |
| * Konfiguration vereinfachtThomas Schmucker2026-09-083-79/+10
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-082-10/+11
| |
| * Unterstützung für jsoncThomas Schmucker2026-09-082-1/+3
| |
| * Merge branch 'master' into add-ansible-supportThomas Schmucker2026-09-052-0/+9
| |\
| * | neovim: Schleife statt table.unpack()Thomas Schmucker2026-09-011-1/+4
| | |
| * | neovim: Support für AnsibleThomas Schmucker2026-08-312-1/+47
| | |
| * | neovim: Aktiviere cursorcolumn bei Yaml-DateienThomas Schmucker2026-08-141-0/+1
| | |
* | | 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
| | |
* | | Verbessere die Treesitter-Erkennung für Windows und Bash-SkripteThomas Schmucker14 days1-1/+6
| | |
* | | Einfacheres JSON(c)-HandlingThomas Schmucker14 days2-4/+1
| | |
* | | Funktionsnamen für die Keymappings angepasstThomas Schmucker14 days2-5/+5
| | |
* | | Vereinfache das Filetype-HandlingThomas Schmucker14 days2-9/+13
| | |
* | | Vereinfache das Treesitter-SetupThomas Schmucker14 days3-25/+22
| | |
* | | Konfiguration vereinfachtThomas Schmucker2026-09-083-79/+10
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-073-3/+33
| | |
* | | Unterstützung für jsoncThomas Schmucker2026-09-072-1/+3
| |/ |/|
* | erstmal kein Treesiter für Jinja...Thomas Schmucker2026-09-021-2/+2
| |
* | neovim: Aktiviere cursorcolumn bei Yaml-DateienThomas Schmucker2026-08-201-0/+1
| |
* | neovim: Füge Unterstützung für Jinja2 Templates hinzuThomas Schmucker2026-08-142-0/+7
|/
* Revert "Normalize line endings"Thomas Schmucker2026-08-125-302/+302
| | | | This reverts commit 6e5882a2fd02d30206ab9ca8aa5847b8ea09196c.
* Normalize line endingsThomas Schmucker2026-08-125-302/+302
|
* 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: 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
|
* 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: typoThomas Schmucker2026-07-161-2/+2
|
* feat: remove copilot plugin, keymaps and statusline indicatorThomas Schmucker2026-06-152-47/+0
|
* neovim: Füge XML zu treesitter hinzuThomas Schmucker2026-06-051-0/+1
|
* Neovim: Formatiere alles mit "stylua `find . -name '*.lua'`"Thomas Schmucker2026-06-054-54/+41
|
* Merge branch 'master' of raspi2:/srv/git/dotfilesThomas Schmucker2026-05-131-25/+11
|\
| * neovim: Tweaks für FarbeinstellungenThomas Schmucker2026-05-131-25/+11
| |
* | neovim: Tastenmappings etwas überarbeitetThomas Schmucker2026-05-131-13/+27
|/
* neovim: Neue UserCmds um den LSP abzuschaltenThomas Schmucker2026-05-041-0/+19
|
* Neovim: Umbrucheinstellungen geändert und Unterstützung für MarkdownThomas Schmucker2026-04-232-3/+33
|
* Neovim/Treesitter: jq hinzugefügtThomas Schmucker2026-04-101-0/+1
|