18 lines
378 B
Lua
18 lines
378 B
Lua
-- Set ',' as the leader key
|
|
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'
|
|
|
|
-- [[ Basic Keymaps ]]
|
|
require 'keymaps'
|
|
|
|
-- [[ Install `lazy.nvim` plugin manager ]]
|
|
require 'config.lazy'
|
|
|
|
vim.cmd.colorscheme 'catppuccin-mocha'
|