mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
Add custom config
This commit is contained in:
parent
803bc181d7
commit
5194755ce8
2 changed files with 17 additions and 0 deletions
11
init.lua
11
init.lua
|
|
@ -1,2 +1,13 @@
|
||||||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||||
require("config.lazy")
|
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
6
lua/plugins/extras.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
return {
|
||||||
|
{ import = "lazyvim.plugins.extras.lang.python" },
|
||||||
|
{ import = "lazyvim.plugins.extras.lang.sql" },
|
||||||
|
{ import = "lazyvim.plugins.extras.lang.yaml" },
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Reference in a new issue