• Add .pre-commit-config.yaml for gitleaks. • Initialize Neovim configuration structure in nvim/init.lua. • Define core settings, autocommands, keybinds, icons, and LSP configurations. • Set up plugin loading via lazy.nvim and configure various plugins.
10 lines
287 B
Lua
Executable File
10 lines
287 B
Lua
Executable File
require("config.plugins.lazy")
|
|
|
|
require("config.nvim_options")
|
|
require("config.autocommands")
|
|
|
|
-- Override configs after loading from lspconfig
|
|
-- Ideally I would use the lsp/ folder, but some LSPs do not respect these overrides
|
|
-- e.g.: html, jinja_lsp and others
|
|
require("config.lsp")
|