-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit_lazy.lua
More file actions
20 lines (19 loc) · 751 Bytes
/
init_lazy.lua
File metadata and controls
20 lines (19 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- TODO:
-- 1. apply log to all sub-modules
-- DONE 2. move config files to redwood repo for version control
-- 3. how to apply customized formatting for lsp formatting
-- 4. write article for aspects
--
-- vim.api.nvim_echo({ { '# \n', 'ErrorMsg' } }, false, {})
-- :lua print(vim.inspect(lvim.lsp.automatic_configuration.skipped_servers))
-- :lua print(pcall(vim.api.nvim_get_hl_by_name, name, not cterm))
require('config.vimopt').setup()
require('config.keymaps').setup()
require('config.theme.hacker').setup()
require('setup.lazy').setup()
require('setup.whichkey').setup()
require('setup.lualine').setup()
require('setup.breadcrumbs').setup()
require('setup.nvimtree').setup()
require('setup.nvimcmp').setup()
require('setup.colorizer').setup()