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.
kickstart.nvim/init.lua

17 lines
408 B
Lua

-- Lua quick doc reference https://learnxinyminutes.com/docs/lua/
-- Sets <space> as the <leader> key
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Bootsrap plugin manager
require "core.bootstrap-plugin-manager"
require "core.plugins"
require "core.settings"
require "core.keymaps"
require "core.setup"
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et