-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
43 lines (37 loc) · 1.08 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
require('andrsj.plugins')
require('andrsj.plugins.blankline')
require('andrsj.plugins.cmp')
require('andrsj.plugins.gitsigns')
require('andrsj.plugins.lualine')
require('andrsj.plugins.neo-tree')
require('andrsj.plugins.null-ls')
require('andrsj.plugins.onedark')
require('andrsj.plugins.tabline')
require('andrsj.plugins.telescope')
require('andrsj.plugins.toggle-term')
require('andrsj.plugins.tree-sitter')
require('andrsj.plugins.whichkey')
require('andrsj.plugins.window-picker')
require('Comment').setup()
require('andrsj.settings')
require('andrsj.keymaps')
require('andrsj.lsp')
require('andrsj.utils')
-- Exapmples of TODO comments:
-- PERF: text
-- TODO: text
-- HACK: text
-- FIX: text
-- WARNING: text
-- NOTE: text
-- INFO: text
-- XXX: text
-- TEST: text
-- BUG: text
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=4 sts=4 sw=4 et