2021-08-19 07:06:01 +00:00
|
|
|
local options = require("chadrc").options
|
2021-06-26 02:36:26 +00:00
|
|
|
local opt = vim.opt
|
2021-07-14 05:24:09 +00:00
|
|
|
local g = vim.g
|
2021-06-26 02:36:26 +00:00
|
|
|
|
2021-08-16 07:49:09 +00:00
|
|
|
opt.completeopt = { "menuone", "noselect" }
|
2021-08-12 11:58:03 +00:00
|
|
|
opt.undofile = options.permanent_undo
|
|
|
|
opt.ruler = options.ruler
|
|
|
|
opt.hidden = options.hidden
|
|
|
|
opt.ignorecase = options.ignorecase
|
2021-06-26 02:36:26 +00:00
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
|
|
|
opt.termguicolors = true
|
|
|
|
opt.cul = true
|
2021-08-12 11:58:03 +00:00
|
|
|
opt.mouse = options.mouse
|
2021-06-26 02:36:26 +00:00
|
|
|
opt.signcolumn = "yes"
|
2021-08-12 11:58:03 +00:00
|
|
|
opt.cmdheight = options.cmdheight
|
|
|
|
opt.updatetime = options.updatetime -- update interval for gitsigns
|
|
|
|
opt.timeoutlen = options.timeoutlen
|
|
|
|
opt.clipboard = options.clipboard
|
2021-03-13 10:51:52 +00:00
|
|
|
|
2021-07-14 04:57:33 +00:00
|
|
|
-- disable nvim intro
|
2021-08-16 07:49:09 +00:00
|
|
|
opt.shortmess:append "sI"
|
2021-07-14 04:57:33 +00:00
|
|
|
|
|
|
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
2021-08-16 07:49:09 +00:00
|
|
|
opt.fillchars = { eob = " " }
|
2021-07-14 04:57:33 +00:00
|
|
|
|
2021-06-16 00:50:47 +00:00
|
|
|
-- Numbers
|
2021-08-12 11:58:03 +00:00
|
|
|
opt.number = options.number
|
|
|
|
opt.numberwidth = options.numberwidth
|
2021-08-19 08:28:07 +00:00
|
|
|
opt.relativenumber = options.relativenumber
|
2021-06-16 00:50:47 +00:00
|
|
|
|
2021-07-16 17:52:36 +00:00
|
|
|
-- Indenline
|
2021-08-12 11:58:03 +00:00
|
|
|
opt.expandtab = options.expandtab
|
|
|
|
opt.shiftwidth = options.shiftwidth
|
|
|
|
opt.smartindent = options.smartindent
|
2021-06-15 16:14:11 +00:00
|
|
|
|
2021-07-17 09:04:36 +00:00
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
|
|
-- when cursor reaches end/beginning of line
|
2021-08-16 07:49:09 +00:00
|
|
|
opt.whichwrap:append "<>hl"
|
2021-07-17 09:04:36 +00:00
|
|
|
|
2021-08-12 11:58:03 +00:00
|
|
|
g.mapleader = options.mapleader
|
|
|
|
g.auto_save = options.autosave
|
2021-07-14 05:24:09 +00:00
|
|
|
|
2021-06-26 02:08:44 +00:00
|
|
|
-- disable builtin vim plugins
|
2021-07-20 18:19:31 +00:00
|
|
|
local disabled_built_ins = {
|
2021-08-16 07:49:09 +00:00
|
|
|
"netrw",
|
|
|
|
"netrwPlugin",
|
|
|
|
"netrwSettings",
|
|
|
|
"netrwFileHandlers",
|
|
|
|
"gzip",
|
|
|
|
"zip",
|
|
|
|
"zipPlugin",
|
|
|
|
"tar",
|
|
|
|
"tarPlugin",
|
|
|
|
"getscript",
|
|
|
|
"getscriptPlugin",
|
|
|
|
"vimball",
|
|
|
|
"vimballPlugin",
|
|
|
|
"2html_plugin",
|
|
|
|
"logipat",
|
|
|
|
"rrhelper",
|
|
|
|
"spellfile_plugin",
|
|
|
|
"matchit",
|
2021-07-20 18:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin in pairs(disabled_built_ins) do
|
2021-08-16 07:49:09 +00:00
|
|
|
g["loaded_" .. plugin] = 1
|
2021-07-20 18:19:31 +00:00
|
|
|
end
|
2021-06-26 02:08:44 +00:00
|
|
|
|
2021-08-18 12:13:56 +00:00
|
|
|
-- Use relative & absolute line numbers in 'n' & 'i' modes respectively
|
|
|
|
-- vim.cmd[[ au InsertEnter * set norelativenumber ]]
|
|
|
|
-- vim.cmd[[ au InsertLeave * set relativenumber ]]
|
|
|
|
|
|
|
|
-- Don't show any numbers inside terminals
|
2021-08-13 15:59:17 +00:00
|
|
|
vim.cmd [[ au TermOpen term://* setlocal nonumber norelativenumber ]]
|
2021-08-18 12:13:56 +00:00
|
|
|
|
|
|
|
-- Don't show status line on certain windows
|
|
|
|
vim.cmd [[ au TermOpen term://* setfiletype terminal ]]
|
2021-08-19 07:06:01 +00:00
|
|
|
vim.cmd [[ let hidden_statusline = luaeval('require("chadrc").ui.hidden_statusline') | autocmd BufEnter,BufWinEnter,WinEnter,CmdwinEnter,TermEnter * nested if index(hidden_statusline, &ft) >= 0 | set laststatus=0 | else | set laststatus=2 | endif ]]
|
2021-08-01 04:25:28 +00:00
|
|
|
|
2021-07-30 17:02:58 +00:00
|
|
|
-- Open a file from its last left off position
|
|
|
|
-- vim.cmd [[ au BufReadPost * if expand('%:p') !~# '\m/\.git/' && line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif ]]
|
|
|
|
-- File extension specific tabbing
|
|
|
|
-- vim.cmd [[ autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 ]]
|