- Add config.lua for comprehensive configuration options (transparent, italic_comments, bold_keywords, bold_functions, bold_types, terminal_colors) - Add highlights.lua with 500+ highlight groups for 30+ plugins (Telescope, NvimTree, Neo-tree, GitSigns, nvim-cmp, Lazy.nvim, Mason, etc.) - Add colors/ directory for :colorscheme command support - Add terminal colors (16-color palette for :terminal) - Add test suite (test/test_colors.lua) - Add development tools (selene.toml, stylua.toml, vim.toml) - Add CHANGELOG.md following Keep a Changelog format - Fix colors.lua not being used by init.lua - Fix setup(opts) not applying configuration options - Fix README referencing non-existent files - Update documentation with accurate file structure and API docs
62 lines
485 B
Plaintext
62 lines
485 B
Plaintext
# Lua compiled sources
|
|
luac.out
|
|
*.luac
|
|
|
|
# LuaRocks build files
|
|
*.src.rock
|
|
*.zip
|
|
*.tar.gz
|
|
|
|
# Object files
|
|
*.o
|
|
*.os
|
|
*.ko
|
|
*.obj
|
|
*.elf
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Libraries
|
|
*.lib
|
|
*.a
|
|
*.la
|
|
*.lo
|
|
*.def
|
|
*.exp
|
|
|
|
# Shared objects (inc. Windows DLLs)
|
|
*.dll
|
|
*.so
|
|
*.so.*
|
|
*.dylib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
*.i*86
|
|
*.x86_64
|
|
*.hex
|
|
|
|
# Neovim
|
|
.nvim.lua
|
|
.nvimrc
|
|
.exrc
|
|
|
|
# Editor specific
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Testing
|
|
.tests/
|
|
coverage/
|
|
|
|
# Documentation build
|
|
doc/tags
|