2021-06-26 04:36:26 +02:00
|
|
|
local opt = vim.opt
|
2021-07-14 07:24:09 +02:00
|
|
|
local g = vim.g
|
2021-06-26 04:36:26 +02:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
-- use filetype.lua instead of filetype.vim
|
|
|
|
g.did_load_filetypes = 0
|
|
|
|
g.do_filetype_lua = 1
|
2022-05-06 16:44:57 +02:00
|
|
|
g.toggle_theme_icon = " "
|
2021-08-19 05:21:42 +02:00
|
|
|
|
2022-05-01 04:31:47 +02:00
|
|
|
opt.confirm = true
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.laststatus = 3 -- global statusline
|
2021-09-26 15:17:12 +02:00
|
|
|
opt.title = true
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.clipboard = "unnamedplus"
|
|
|
|
opt.cmdheight = 1
|
2021-08-22 09:49:15 +02:00
|
|
|
opt.cul = true -- cursor line
|
2021-03-13 11:51:52 +01:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
-- Indentline
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.expandtab = true
|
|
|
|
opt.shiftwidth = 2
|
|
|
|
opt.smartindent = true
|
2021-07-14 06:57:33 +02:00
|
|
|
|
2021-09-19 10:11:28 +02:00
|
|
|
-- disable tilde on end of buffer: https://github.com/neovim/neovim/pull/8546#issuecomment-643643758
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.fillchars = { eob = " " }
|
2021-07-14 06:57:33 +02:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.hidden = true
|
|
|
|
opt.ignorecase = true
|
|
|
|
opt.smartcase = true
|
|
|
|
opt.mouse = "a"
|
2021-08-22 09:49:15 +02:00
|
|
|
|
2021-06-16 02:50:47 +02:00
|
|
|
-- Numbers
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.number = true
|
|
|
|
opt.numberwidth = 2
|
|
|
|
opt.relativenumber = false
|
|
|
|
opt.ruler = false
|
2021-06-16 02:50:47 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
-- disable nvim intro
|
|
|
|
opt.shortmess:append "sI"
|
2021-08-22 05:21:52 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.tabstop = 8
|
2021-08-22 09:49:15 +02:00
|
|
|
opt.termguicolors = true
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.timeoutlen = 400
|
|
|
|
opt.undofile = true
|
2021-08-22 09:49:15 +02:00
|
|
|
|
|
|
|
-- interval for writing swap file to disk, also used by gitsigns
|
2022-04-27 17:42:28 +02:00
|
|
|
opt.updatetime = 250
|
2021-06-15 18:14:11 +02:00
|
|
|
|
2021-07-17 11:04:36 +02:00
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
|
|
-- when cursor reaches end/beginning of line
|
2021-10-09 03:02:53 +02:00
|
|
|
opt.whichwrap:append "<>[]hl"
|
2022-04-27 17:42:28 +02:00
|
|
|
g.mapleader = " "
|
2021-07-14 07:24:09 +02:00
|
|
|
|
2021-08-22 09:49:15 +02:00
|
|
|
-- disable some builtin vim plugins
|
2021-07-20 20:19:31 +02:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
local default_plugins = {
|
|
|
|
"2html_plugin",
|
|
|
|
"getscript",
|
|
|
|
"getscriptPlugin",
|
|
|
|
"gzip",
|
|
|
|
"logipat",
|
|
|
|
"netrw",
|
|
|
|
"netrwPlugin",
|
|
|
|
"netrwSettings",
|
|
|
|
"netrwFileHandlers",
|
|
|
|
"matchit",
|
|
|
|
"tar",
|
|
|
|
"tarPlugin",
|
|
|
|
"rrhelper",
|
|
|
|
"spellfile_plugin",
|
|
|
|
"vimball",
|
|
|
|
"vimballPlugin",
|
|
|
|
"zip",
|
|
|
|
"zipPlugin",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin in pairs(default_plugins) do
|
2021-08-16 09:49:09 +02:00
|
|
|
g["loaded_" .. plugin] = 1
|
2021-07-20 20:19:31 +02:00
|
|
|
end
|
2022-01-31 05:33:15 +01:00
|
|
|
|
|
|
|
vim.schedule(function()
|
2022-04-30 12:18:45 +02:00
|
|
|
vim.opt.shadafile = vim.fn.expand "$HOME" .. "/.local/share/nvim/shada/main.shada"
|
2022-02-06 05:46:32 +01:00
|
|
|
vim.cmd [[ silent! rsh ]]
|
2022-01-31 05:33:15 +01:00
|
|
|
end)
|
2022-04-27 17:42:28 +02:00
|
|
|
|
|
|
|
-- load user options if the file exists
|
2022-04-28 00:33:48 +02:00
|
|
|
require("core.utils").load_config().options.user()
|