diff options
author | talha <talha@talhaamir.xyz> | 2023-11-19 15:05:03 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2023-11-19 15:05:03 +0500 |
commit | 27c1b5b9a5cadf1d1331e4cefeaa9c8a73707b26 (patch) | |
tree | 024c86f419419a36780cc8a3780e33a4d2513439 /lua/linux/set.lua | |
parent | a75d4659bfac04a1f5cad4166cc68f873768c653 (diff) |
Added harpoon
Diffstat (limited to 'lua/linux/set.lua')
-rw-r--r-- | lua/linux/set.lua | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/lua/linux/set.lua b/lua/linux/set.lua deleted file mode 100644 index 0366b03..0000000 --- a/lua/linux/set.lua +++ /dev/null @@ -1,36 +0,0 @@ -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 |