-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.lua
39 lines (33 loc) · 884 Bytes
/
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
--[[
_ _ _
| \ | | ___ _____ _(_)_ __ ___
| \| |/ _ \/ _ \ \ / / | '_ ` _ \
| |\ | __/ (_) \ V /| | | | | | |
|_| \_|\___|\___/ \_/ |_|_| |_| |_|
Version: 0.1.3
Maintainer: dusnm
Repository: https://github.com/dusnm/nvim.git
License: GPL-3.0-or-later
--]]
-----------------
-- API Aliases --
-----------------
local fn = vim.fn -- execute vim functions
------------------------
-- Import lua modules --
------------------------
-- At this point the plugin script
-- will download packer if it's
-- not already installed and
-- sync all the plugins defined
-- in its configuration.
require('settings')
require('keymaps')
require('plugins/plugins')
require('plugins/gitsigns')
require('plugins/lualine')
require('plugins/telescope')
require('plugins/treesitter')
require('plugins/tree')
require('plugins/lsp')
require('plugins/completions')