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.
18 lines
398 B
Lua
18 lines
398 B
Lua
print("Init start")
|
|
|
|
-- set leader to space
|
|
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 = false
|
|
|
|
-- 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")
|