at main 629 B view raw
1-- hyperreal's Neovim config 2 3-- Set <space> as the leader key 4-- See `:help mapleader` 5-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used) 6vim.g.mapleader = ' ' 7vim.g.maplocalleader = ' ' 8 9-- Set to true if you have a Nerd Font installed and selected in the terminal 10vim.g.have_nerd_font = true 11 12-- [[ Setting options ]] 13require 'options' 14 15-- [[ Basic keymaps ]] 16require 'keymaps' 17 18-- [[ Basic autocommands ]] 19require 'autocommands' 20 21-- [[ Install `lazy.nvim` plugin manager ]] 22require 'lazy-bootstrap' 23 24-- [[ Configure and install plugins ]] 25require 'lazy-plugins' 26 27-- vim: ts=2 sts=2 sw=2 et