mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-13 20:43:49 +00:00
26 lines
595 B
Lua
26 lines
595 B
Lua
-- Set <space> as the leader key
|
|
-- See `:help mapleader`
|
|
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
|
|
|
|
-- Save start directory as base
|
|
vim.g.base_dir = vim.fn.getcwd()
|
|
|
|
-- [[ Setting options ]]
|
|
require 'options'
|
|
|
|
-- [[ Basic Keymaps ]]
|
|
require 'keymaps'
|
|
|
|
-- [[ Install `lazy.nvim` plugin manager ]]
|
|
require 'lazy-bootstrap'
|
|
|
|
-- [[ Configure and install plugins ]]
|
|
require 'lazy-plugins'
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|