-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
55 lines (46 loc) · 1.51 KB
/
init.lua
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
-- ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗
-- ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║
-- ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║
-- ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║
-- ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║
-- ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝
-- cheatcooodes's Neovim config
-- Oct 6th 2022
local configs = {
-- CORE
"core.options",
"core.keymaps",
"core.colorscheme",
"core.autocmds",
"core.plugins",
-- PLUGINS
"plugins.lualine",
"plugins.autopairs",
"plugins.hop",
"plugins.mason",
"plugins.lspconfig",
"plugins.lspkind",
"plugins.cmp",
"plugins.luasnip",
"plugins.vim-markdown",
"plugins.treesitter",
"plugins.dap",
-- "plugins.transparent",
-- LSP
"lsp.pyright",
"lsp.sumneko_lua",
"lsp.clangd",
"lsp.tsserver"
}
for _,luafile in pairs(configs) do
local status_ok = pcall(require,luafile)
if not status_ok then
vim.notify("Failed to load "..luafile)
end
end
--[[
if vim.g.vscode then
end
if vim.fn.has("wsl") then
end
--]]