diff options
Diffstat (limited to 'lua/talha/set.lua')
-rw-r--r-- | lua/talha/set.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lua/talha/set.lua b/lua/talha/set.lua new file mode 100644 index 0000000..0366b03 --- /dev/null +++ b/lua/talha/set.lua @@ -0,0 +1,36 @@ +local op = vim.opt + +op.nu = true +op.relativenumber = true + +op.tabstop = 2 +op.softtabstop = 2 +op.shiftwidth = 2 +op.expandtab = true + +op.smartindent = true +op.wrap = false + +op.swapfile = false +op.backup = false +op.undodir = os.getenv("HOME") .. "/.vim/undodir" +op.undofile = true + +op.hlsearch = false +op.incsearch = true + +op.termguicolors = true +op.cursorline = true + +op.scrolloff = 8 + +-- autoreload a file after inactivity +op.autoread = true +vim.api.nvim_command([[au CursorHold * checktime]]) + +op.updatetime = 50 + +op.colorcolumn = '120' + +-- required to allow mm (mark-move) command to move file +vim.g.netrw_keepdir = 0 |