2021-06-25 22:36:26 -04:00
|
|
|
local opt = vim.opt
|
2021-07-14 01:24:09 -04:00
|
|
|
local g = vim.g
|
2021-06-25 22:36:26 -04:00
|
|
|
|
2021-07-18 21:10:38 -04:00
|
|
|
-- Turn these off at startup, will be enabled later just before loading the theme
|
|
|
|
vim.cmd([[
|
|
|
|
syntax off
|
|
|
|
filetype off
|
|
|
|
filetype plugin indent off
|
|
|
|
]])
|
|
|
|
|
2021-06-25 22:36:26 -04:00
|
|
|
opt.ruler = false
|
|
|
|
opt.hidden = true
|
|
|
|
opt.ignorecase = true
|
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
|
|
|
opt.termguicolors = true
|
|
|
|
opt.cul = true
|
|
|
|
opt.mouse = "a"
|
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.cmdheight = 1
|
|
|
|
opt.updatetime = 250 -- update interval for gitsigns
|
2021-07-13 06:46:57 -04:00
|
|
|
opt.timeoutlen = 400
|
2021-06-25 22:36:26 -04:00
|
|
|
opt.clipboard = "unnamedplus"
|
2021-03-13 05:51:52 -05:00
|
|
|
|
2021-07-14 00:57:33 -04:00
|
|
|
-- disable nvim intro
|
|
|
|
opt.shortmess:append("sI")
|
|
|
|
|
|
|
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
2021-07-18 20:58:28 -04:00
|
|
|
vim.cmd("let &fcs='eob: '")
|
2021-07-14 00:57:33 -04:00
|
|
|
|
2021-06-15 20:50:47 -04:00
|
|
|
-- Numbers
|
2021-06-25 22:36:26 -04:00
|
|
|
opt.number = true
|
|
|
|
opt.numberwidth = 2
|
2021-07-04 05:08:08 -04:00
|
|
|
-- opt.relativenumber = true
|
2021-06-15 20:50:47 -04:00
|
|
|
|
2021-07-16 13:52:36 -04:00
|
|
|
-- Indenline
|
2021-06-25 22:36:26 -04:00
|
|
|
opt.expandtab = true
|
|
|
|
opt.shiftwidth = 2
|
|
|
|
opt.smartindent = true
|
2021-06-15 12:14:11 -04:00
|
|
|
|
2021-07-17 05:04:36 -04:00
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
|
|
-- when cursor reaches end/beginning of line
|
|
|
|
opt.whichwrap:append("<>hl")
|
|
|
|
|
2021-07-14 01:24:09 -04:00
|
|
|
g.mapleader = " "
|
|
|
|
g.auto_save = false
|
|
|
|
|
2021-06-25 22:08:44 -04:00
|
|
|
-- disable builtin vim plugins
|
2021-07-20 14:19:31 -04:00
|
|
|
local disabled_built_ins = {
|
|
|
|
"netrw",
|
|
|
|
"netrwPlugin",
|
|
|
|
"netrwSettings",
|
|
|
|
"netrwFileHandlers",
|
|
|
|
"gzip",
|
|
|
|
"zip",
|
|
|
|
"zipPlugin",
|
|
|
|
"tar",
|
|
|
|
"tarPlugin",
|
|
|
|
"getscript",
|
|
|
|
"getscriptPlugin",
|
|
|
|
"vimball",
|
|
|
|
"vimballPlugin",
|
|
|
|
"2html_plugin",
|
|
|
|
"logipat",
|
|
|
|
"rrhelper",
|
2021-07-21 13:36:28 -04:00
|
|
|
"spellfile_plugin",
|
|
|
|
"matchit"
|
2021-07-20 14:19:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin in pairs(disabled_built_ins) do
|
|
|
|
vim.g["loaded_" .. plugin] = 1
|
|
|
|
end
|
2021-06-25 22:08:44 -04:00
|
|
|
|
2021-03-08 00:24:53 -05:00
|
|
|
local M = {}
|
|
|
|
|
2021-06-03 14:49:52 -04:00
|
|
|
-- file extension specific tabbing
|
2021-06-25 22:08:44 -04:00
|
|
|
-- vim.cmd([[autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
|
2021-06-26 08:50:25 -04:00
|
|
|
|
2021-03-08 00:24:53 -05:00
|
|
|
return M
|