2024-03-03 21:30:04 +00:00
|
|
|
print 'waddup'
|
|
|
|
|
2023-02-17 16:31:57 -05:00
|
|
|
vim.g.mapleader = ' '
|
|
|
|
vim.g.maplocalleader = ' '
|
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
-- NOTE: Further customisation found in /lua/
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
-- [[ Setting options ]]
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
require 'options'
|
2024-02-26 10:03:53 -05:00
|
|
|
|
|
|
|
-- [[ Basic Keymaps ]]
|
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
require 'keymaps'
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
-- [[ Plugin Manager ]]
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
require 'plugins'
|
2024-02-26 10:03:53 -05:00
|
|
|
|
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-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
Stuck?
|
|
|
|
- :help
|
|
|
|
- :Tutor
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
Errors?
|
|
|
|
- :checkhealth
|
2022-11-21 06:47:24 -06:00
|
|
|
|
2024-03-03 23:30:02 +00:00
|
|
|
Lua info:
|
|
|
|
- https://learnxinyminutes.com/docs/lua/
|
|
|
|
- :help lua-guide
|
2024-02-26 10:03:53 -05:00
|
|
|
|
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
|