- Add missing Fish configs (direnv, ssh function) - Add Tokyo Night theme for Ghostty - Complete Neovim scratch config sync - Rewrite install.sh for new structure - Add comprehensive README.md
16 lines
529 B
Lua
16 lines
529 B
Lua
-- ============================================================================
|
|
-- Neovim Config - Built from Scratch
|
|
-- Optimiert für TypeScript/Playwright QA und Go Development
|
|
-- ============================================================================
|
|
|
|
-- Leader key muss VOR lazy.nvim gesetzt werden
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
|
|
-- Core Einstellungen laden
|
|
require('core.options')
|
|
require('core.keymaps')
|
|
require('core.lazy')
|
|
|
|
-- Nach Plugin-Load: LSP und weitere Configs werden automatisch geladen
|