Add custom config

This commit is contained in:
Jose G 2026-06-22 12:46:12 -04:00
parent 803bc181d7
commit 5194755ce8
2 changed files with 17 additions and 0 deletions

View file

@ -1,2 +1,13 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
-- Sync native editor registers with your system clipboard
vim.opt.clipboard = "unnamedplus"
-- Disable all legacy external language providers to boost startup speed
vim.g.loaded_python3_provider = 0
vim.g.loaded_python_provider = 0 -- Disables legacy Python 2 check
vim.g.loaded_node_provider = 0
vim.g.loaded_perl_provider = 0
vim.g.loaded_ruby_provider = 0

6
lua/plugins/extras.lua Normal file
View file

@ -0,0 +1,6 @@
return {
{ import = "lazyvim.plugins.extras.lang.python" },
{ import = "lazyvim.plugins.extras.lang.sql" },
{ import = "lazyvim.plugins.extras.lang.yaml" },
}