22 lines
503 B
Lua
22 lines
503 B
Lua
-- Must happen before plugins are loaded.
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
|
|
-- Set to true if you have a Nerd Font installed and selected in the terminal.
|
|
vim.g.have_nerd_font = true
|
|
|
|
local config_path = vim.fn.stdpath 'config'
|
|
package.path = table.concat({
|
|
config_path .. '/?.lua',
|
|
config_path .. '/?/init.lua',
|
|
package.path,
|
|
}, ';')
|
|
|
|
require 'core.options'
|
|
require 'core.keymaps'
|
|
require 'core.diagnostics'
|
|
require 'core.autocmds'
|
|
require 'core.lazy'
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|