Add new config for neovim
This commit is contained in:
30
config/nvim/lua/user/options.lua
Normal file
30
config/nvim/lua/user/options.lua
Normal file
@@ -0,0 +1,30 @@
|
||||
local opt = vim.opt
|
||||
|
||||
-- 2 tabs converted to spaces + autoindentation
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
|
||||
-- What the **** is this
|
||||
opt.shortmess = "filnxtToOFc"
|
||||
|
||||
-- Create splits like a normal human being
|
||||
opt.splitbelow = true
|
||||
opt.splitright = true
|
||||
|
||||
-- Other settings
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.wrap = true
|
||||
opt.swapfile = false
|
||||
opt.hidden = true
|
||||
opt.writebackup = false
|
||||
opt.encoding = "utf-8"
|
||||
opt.updatetime = 300
|
||||
opt.mouse = "a"
|
||||
opt.cursorline = true
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.fillchars:append({ eob = " " })
|
||||
|
||||
-- TODO: Add settings for nvim-treesitter provided folding
|
||||
Reference in New Issue
Block a user