some nvim updates
This commit is contained in:
21
.config/nvim/lua/config/options.lua
Normal file
21
.config/nvim/lua/config/options.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
-- Basic settings
|
||||
vim.o.number = true
|
||||
vim.o.relativenumber = true
|
||||
vim.o.tabstop = 2
|
||||
vim.o.shiftwidth = 2
|
||||
vim.o.expandtab = true
|
||||
vim.o.smartindent = true
|
||||
vim.o.wrap = false
|
||||
vim.o.cursorline = true
|
||||
vim.o.termguicolors = true
|
||||
vim.o.ruler = true
|
||||
vim.o.visualbell = true
|
||||
vim.o.modelines = 0
|
||||
vim.o.colorcolumn = '+1,100,120'
|
||||
vim.o.hidden = true
|
||||
vim.o.showmode = true
|
||||
|
||||
-- Syntax highlighting and filetype plugins
|
||||
vim.cmd('syntax enable')
|
||||
vim.cmd('filetype plugin indent on')
|
||||
Reference in New Issue
Block a user