V2 of my Neovim configuration.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
364 B

11 months ago
-- Initialization
11 months ago
local config_path = vim.fn.stdpath('config') .. '/'
require('conf.plugins')
require('conf.keybinds')
require('conf.config')
require('conf.ui')
require('conf.search')
require('conf.git')
11 months ago
require('conf.ui')
11 months ago
local paths = vim.fn.glob(config_path .. 'lua/conf/langs/*.lua', true, true, true)
11 months ago
for _, file in ipairs(paths) do
loadfile(file)()
11 months ago
end