This commit is contained in:
2025-08-04 17:36:35 +02:00
parent 9800f5d265
commit ecaf50a044
11 changed files with 71 additions and 31 deletions

View File

@@ -84,29 +84,21 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now! :)
--]]
-- 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
vim.g.have_nerd_font = true
-- [[ Setting options ]]
require 'options'
-- [[ Keymaps ]]
require 'keymaps'
-- [[ Basic Autocommands ]]
require 'autocommands'
-- [[ Core options ]]
require 'kickstart.core.options'
-- [[ Install `lazy.nvim` plugin manager ]]
require 'lazy-bootstrap'
require 'kickstart.core.lazy-bootstrap'
-- [[ Configure and install plugins ]]
require 'lazy-plugins'
require 'kickstart.core.lazy-plugins'
-- [[ Basic Autocommands ]]
require 'kickstart.core.autocommands'
-- [[ Keymaps ]]
require 'kickstart.core.keymaps'
require 'custom.keymaps'
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et