diff --git a/init.lua b/init.lua index 2514f9e..646f75b 100644 --- a/init.lua +++ b/init.lua @@ -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 + diff --git a/lua/plugins/extras.lua b/lua/plugins/extras.lua new file mode 100644 index 0000000..8a602db --- /dev/null +++ b/lua/plugins/extras.lua @@ -0,0 +1,6 @@ +return { + { import = "lazyvim.plugins.extras.lang.python" }, + { import = "lazyvim.plugins.extras.lang.sql" }, + { import = "lazyvim.plugins.extras.lang.yaml" }, +} +