-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
35 lines (35 loc) · 1.03 KB
/
init.lua
File metadata and controls
35 lines (35 loc) · 1.03 KB
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
if vim.g.vscode then
-- VSCode extension
vim.opt.clipboard = "unnamedplus" -- allows neovim to access the system clipboard
else
require("patrick.launch")
require("patrick.options")
require("patrick.keymaps")
require("patrick.autocmds")
spec("patrick.colorscheme")
spec("patrick.devicons")
spec("patrick.treesitter")
spec("patrick.lualine")
spec("patrick.schemastore")
spec("patrick.mason")
spec("patrick.lspconfig")
spec("patrick.telescope")
spec("patrick.conform")
spec("patrick.illuminate")
spec("patrick.nvim-tree")
spec("patrick.cmp")
spec("patrick.neogit")
spec("patrick.gitsigns")
spec("patrick.harpoon")
spec("patrick.barbecue")
spec("patrick.alpha")
spec("patrick.project")
spec("patrick.autopairs")
spec("patrick.extras.colorizer")
spec("patrick.extras.dressing")
spec("patrick.extras.fidget")
spec("patrick.extras.navbuddy")
spec("patrick.extras.neoscroll")
spec("patrick.extras.ufo")
require("patrick.lazy")
end