nvim-lua.kickstart.nvim/init.lua

20 lines
484 B
Lua
Raw Normal View History

-- Set <space> as the leader key
-- 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-10-13 22:48:42 +08:00
vim.g.have_nerd_font = true
require 'options'
require 'keymaps'
require 'lazy-bootstrap'
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