summaryrefslogtreecommitdiffstats
path: root/.config/nvim/init.lua
blob: bdfa8bd87ac614b7c8be4187d5c6ebc87824c8e3 (plain)
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
-- init.lua
-- ========================
-- =====    ===============
-- ======  ================
-- ======  ================
-- ======  ====   ====   ==
-- ======  ===     ==  =  =
-- ======  ===  =  ==     =
-- =  ===  ===  =  ==  ====
-- =  ===  ===  =  ==  =  =
-- ==     =====   ====   ==
-- ========================

Confdir = os.getenv('XDG_CONFIG_HOME')

vim.cmd('set runtimepath^=/home/r_bousset/.config/nvim runtimepath+=/home/jozan/.config/nvim/after')
vim.cmd('let &packpath = &runtimepath')
require('config.lazy')
require('config.settings')
require('config.bindings')
require('config.langs')
require('config.hooks')
require('lsp.arduino')
require('lsp.bashls')
require('lsp.clangd')
require('lsp.gopls')
require('lsp.luals')
require('lsp.perlnavigator')