-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
28 lines (23 loc) · 713 Bytes
/
init.lua
File metadata and controls
28 lines (23 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- _G.lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-- vim.opt.rtp:append(vim.fn.stdpath("data") .. "/lazy/impatient.nvim")
vim.loader.enable()
-- local data_path = vim.fn.stdpath("data")
-- local config_path = vim.fn.stdpath("config")
-- vim.o.packpath = data_path .. "/site"
-- vim.opt.rtp = {
-- vim.fn.stdpath("config"),
-- -- data_path .. "/site",
-- vim.env.VIMRUNTIME,
-- -- data_path .. "/site/after
-- -- config_path .. "/after",
-- }
-- vim.o.packpath = ""
require("options")
require("user_commands")
require("auto_commands")
require("mappings").general()
require("mappings").telescope()
require("bootstrap")
require("plugins")
-- no nvim-jdtls for now
vim.g.loaded_jdtls = true