initial commit, working on TODO's
This commit is contained in:
commit
5e821a4d61
12 changed files with 411 additions and 0 deletions
18
options.lua
Normal file
18
options.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- allow use of system keyboard
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
-- allow use of mouse
|
||||
vim.opt.mouse = 'a'
|
||||
-- line numbering, relative
|
||||
vim.opt.number = true
|
||||
vim.wo.number = true
|
||||
vim.wo.relativenumber = true
|
||||
-- Highlights the results of previous search, which is annoying when we are done searching
|
||||
vim.opt.hlsearch = false
|
||||
-- Wrap lines in files
|
||||
vim.opt.wrap = true
|
||||
-- preseve indentation of virtual wrapped lines
|
||||
vim.opt.breakindent = true
|
||||
-- set tab length
|
||||
vim.opt.tabstop = 2;
|
||||
vim.opt.shiftwidth = 2;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue