mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
nvim: restructure config files
This commit is contained in:
parent
feea9886f5
commit
0ac177ee21
5 changed files with 25 additions and 43 deletions
23
nvim/lua/config/settings.lua
Normal file
23
nvim/lua/config/settings.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
--
|
||||
-- General Settings
|
||||
--
|
||||
|
||||
vim.opt.showmode = false -- disable mode in the command line, because i use lualine
|
||||
--vim.opt.guicursor = "a:ver100,c-ci-cr:hor80-blinkon100-blinkwait300"
|
||||
--vim.opt.scrolloff = 30
|
||||
--vim.opt.sidescrolloff = 8
|
||||
|
||||
--
|
||||
-- Editor settings
|
||||
--
|
||||
|
||||
vim.opt.cursorline = true -- highlight line where cursor is.
|
||||
|
||||
-- line numbers
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.numberwidth = 6
|
||||
|
||||
-- indent
|
||||
vim.opt.smartindent = true
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue