-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
25 lines (22 loc) · 701 Bytes
/
init.lua
File metadata and controls
25 lines (22 loc) · 701 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
25
vim.o.tabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true
vim.o.smartindent = true
vim.o.number = true
vim.o.relativenumber = true
vim.o.termguicolors = true
vim.o.colorcolumn = "80,120"
vim.o.cursorcolumn = true
vim.o.cursorline = true
vim.g.mapleader = " "
vim.opt.timeoutlen = 600 -- time to wait for a mapped sequence to complete (in milliseconds) default is 1000
vim.opt.updatetime = 400 -- faster completion (4000ms default)
require('0-1-autocommands')
require('1-packages-definition')
require('2-nvim-cmp-configuration')
require('3-lsp-config')
require('4-nvim-treesitter-config')
require('5-telescope-config')
require('6-other-configs')
require('7-other-settings')
require('8-copilot')