kickstart.nvim/init.lua

44 lines
686 B
Lua
Raw Normal View History

2024-03-03 21:30:04 +00:00
print 'waddup'
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
2024-03-03 23:30:02 +00:00
-- NOTE: Further customisation found in /lua/
2024-03-03 23:30:02 +00:00
-- [[ Setting options ]]
2024-03-03 23:30:02 +00:00
require 'options'
-- [[ Basic Keymaps ]]
2024-03-03 23:30:02 +00:00
require 'keymaps'
2024-03-03 23:30:02 +00:00
-- [[ Plugin Manager ]]
2024-03-03 23:30:02 +00:00
require 'plugins'
2024-03-03 23:30:02 +00:00
--[[
2022-06-23 23:35:53 -04:00
2024-03-03 23:30:02 +00:00
Forked from https://github.com/nvim-lua/kickstart.nvim
Shoutouts to tj and the other contributors for making kickstart
2024-03-03 23:30:02 +00:00
Stuck?
- :help
- :Tutor
2024-03-03 23:30:02 +00:00
Errors?
- :checkhealth
2024-03-03 23:30:02 +00:00
Lua info:
- https://learnxinyminutes.com/docs/lua/
- :help lua-guide
2024-03-03 23:30:02 +00:00
Keymaps:
- Found in this file for now
- [ ]sh to search
2022-06-23 23:35:53 -04:00
2024-03-03 23:30:02 +00:00
]]
2022-06-23 23:35:53 -04:00
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et