-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
21 lines (20 loc) · 880 Bytes
/
Copy pathinit.lua
File metadata and controls
21 lines (20 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---@diagnostic disable: undefined-global
-- ============================================================================
-- Personal Neovim Configuration
-- ============================================================================
-- A modern, modular Neovim setup built on LazyVim
-- Inspired by Takuya Matsuyama's configuration
--
-- GitHub: https://github.com/pyankie/nvim-config
-- Structure:
-- lua/config/ - Core configuration (options, keymaps, autocmds)
-- lua/plugins/ - Plugin specifications
-- lua/util/ - Utility functions
-- lua/zpyankie/ - Custom modules and helpers
--
-- Documentation: See README.md
-- Contributing: See CONTRIBUTING.md
-- ============================================================================
-- Bootstrap and initialize lazy.nvim plugin manager
-- This loads all plugins and configuration modules
require("config.lazy")