You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
Lua
21 lines
495 B
Lua
-- set leader to space
|
|
vim.g.mapleader = ' '
|
|
|
|
-- Set to true if you have a Nerd Font installed and selected in the terminal.
|
|
-- I configure my terminal to set this environment variable.
|
|
if vim.env.NERD_FONTS then
|
|
vim.g.have_nerd_font = true
|
|
else
|
|
vim.g.have_nerd_font = false
|
|
end
|
|
|
|
-- for some reason vim-tree needs this to happen very early on and no I do not
|
|
-- know why
|
|
vim.g.loaded_netrw = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
require("plugins")
|
|
require("prefs")
|
|
require("keys")
|
|
require("lsp")
|