nvim-ks/init.lua

27 lines
741 B
Lua
Raw Normal View History

2024-07-21 22:10:21 +02:00
-- Based on https://github.com/nvim-lua/kickstart.nvim
-- Inspiration from https://github.com/dam9000/kickstart-modular.nvim
-- 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-07-31 20:55:01 +02:00
vim.g.have_nerd_font = true
-- [[ Setting options ]]
require 'options'
-- [[ Basic Keymaps ]]
require 'keymaps'
-- [[ Install `lazy.nvim` plugin manager ]]
require 'lazy-bootstrap'
2022-06-24 05:35:53 +02:00
-- [[ Configure and install plugins ]]
2024-07-21 22:05:23 +02:00
require 'lazy-plugins'
2022-06-24 05:35:53 +02:00
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et