this has still got a bunch of annoying gotchas. both the cmake-tools and rustaceanvim plugins are buggy and limited in extremely annoying ways
35 lines
800 B
Lua
35 lines
800 B
Lua
--[[
|
|
|
|
Originally based on: https://github.com/nvim-lua/kickstart.nvim
|
|
With modularization ideas borrowed from: https://github.com/dam9000/kickstart-modular.nvim
|
|
|
|
Useful documentation / help:
|
|
- https://learnxinyminutes.com/docs/lua/
|
|
- :help lua-guide
|
|
|
|
Other useful things:
|
|
- :Lazy
|
|
- :Mason
|
|
- :checkhealth
|
|
|
|
--]]
|
|
|
|
-- 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
|
|
|
|
require 'options'
|
|
require 'keymaps'
|
|
require 'autocmds'
|
|
require 'lazy-bootstrap'
|
|
require 'lazy-plugins'
|
|
|
|
require 'helper/health'
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|