1
0
Fork 0

Initial nvim config, derived from kickstart.nvim.

This commit is contained in:
Arthur Khachaturov 2023-12-01 08:09:12 +03:00
parent 09be919865
commit 39536754b3
38 changed files with 479 additions and 338 deletions

View file

@ -0,0 +1,31 @@
vim.o.hlsearch = true
-- Enable line numbers
vim.wo.number = true
vim.wo.relativenumber = true
-- Enable mouse mode
vim.o.mouse = 'a'
-- Enable break indent
vim.o.breakindent = true
-- Save undo history
vim.o.undofile = true
-- Case-insensitive searching UNLESS \C or capital in search
vim.o.ignorecase = true
vim.o.smartcase = true
-- Keep signcolumn on by default
vim.wo.signcolumn = 'yes'
-- Decrease update time
vim.o.updatetime = 250
vim.o.timeoutlen = 300
-- Set completeopt to have a better completion experience
vim.o.completeopt = 'menuone,noselect'
-- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true