kickstart.nvim/init.lua

27 lines
622 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-09-10 18:03:09 +02:00
vim.g.have_nerd_font = true
-- [[ Setting options ]]
2024-09-10 18:30:02 +02:00
require 'options'
-- [[ Basic Keymaps ]]
2024-09-10 18:30:02 +02:00
require 'keymaps'
-- [[ Basic Autocommands ]]
2024-09-10 18:30:02 +02:00
require 'autocmds'
2024-09-10 18:30:02 +02:00
-- [[ plugin manager ]]
require 'lazy_bootstrap'
2022-06-23 23:35:53 -04:00
2024-09-10 18:30:02 +02:00
-- [[ plugins ]]
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