-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
24 lines (18 loc) · 693 Bytes
/
Copy pathinit.lua
File metadata and controls
24 lines (18 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- setting global leader key
vim.g.mapleader = " "
-- disable netrw at the very start of your init.lua
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- bootstrap lazy.nvim, and your plugins
require("config.options")
require("config.lazy")
require("config.keymaps")
require("config.lspsettings")
require("config.autocmds")
require("config.noicesettings")
-- Uncomment the next line to set the autocompletion of Codeium AI as default
-- vim.g.codeium_manual = true
-- To enable automatic triggering of codeium anytime run the command below
-- let g:codeium_manual = v:false
-- To disable automatic triggering of codeium anytime run the command below
-- let g:codeium_manual = v:true