-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.lua
29 lines (27 loc) · 1.06 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--TODO: use `assert` to check for argument types
--
--TODO:
--https://spacevim.org/SpaceVim-release-v1.8.0/#.YVsDlG_4ps8.reddit
--https://github.com/crivotz/nv-ide
--https://github.com/100lvlmaster/dots/tree/master
--https://www.youtube.com/watch?v=brtIZxOwDXE
--https://www.reddit.com/r/neovim/comments/qbmbj8/cosmicnvim_a_lightweight_and_opinionated_neovim/
--https://github.com/albingroen/nvim-lsp-typescript-config
--https://github.com/shaeinst/roshnivim
--https://github.com/ayamir/nvimdots
--https://github.com/kyle-mccarthy/nvim-dotfiles
--https://github.com/bfredl/bfredl.github.io/tree/master/nvim
--https://github.com/kabouzeid
-- https://github.com/lewis6991/dotfiles/tree/master/config/nvim (+ https://github.com/lewis6991/spellsitter.nvim)
--
--TODO: docker container?
--https://github.com/nvim-lsp/try.nvim
--https://github.com/NvChad/NvChad
--
--https://github.com/sumneko/lua-language-server/wiki/EmmyLua-Annotations#optional-params
pcall(require, 'impatient')
require('v.globals')
require('v.settings')
require('v.keybindings')
require('v.commands')
require('v.packer')