up
This commit is contained in:
30
init.lua
30
init.lua
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user