kickstart.nvim/init.lua

28 lines
633 B
Lua
Raw Normal View History

--[[
2024-09-22 19:16:16 -07:00
Notes!
--]]
2024-05-15 19:17:35 -07:00
-- Set <space> as the leader key
2024-09-22 19:16:16 -07:00
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
2024-05-15 16:26:25 -07:00
vim.g.have_nerd_font = true
2024-09-19 21:32:25 -07:00
-- [[ Setting options ]]
require 'options'
2024-09-19 21:32:25 -07:00
-- [[ Basic Keymaps ]]
require 'keymaps'
-- [[ Install `lazy.nvim` plugin manager ]]
2024-09-19 21:32:25 -07:00
require 'lazy-bootstrap'
2022-06-23 23:35:53 -04:00
-- [[ Configure and install plugins ]]
2024-09-19 21:32:25 -07:00
require 'lazy-plugins'
2022-06-23 23:35:53 -04:00
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et