neovim-confs/lua/options.lua

91 lines
2.6 KiB
Lua
Raw Normal View History

2021-06-26 04:36:26 +02:00
local opt = vim.opt
local g = vim.g
2021-06-26 04:36:26 +02:00
-- export user config as a global varibale
g.nvchad_user_config = "chadrc"
local options = require("utils").load_config().options
opt.completeopt = { "menuone", "noselect" }
2021-08-12 13:58:03 +02:00
opt.undofile = options.permanent_undo
opt.ruler = options.ruler
opt.hidden = options.hidden
opt.ignorecase = options.ignorecase
2021-06-26 04:36:26 +02:00
opt.splitbelow = true
opt.splitright = true
opt.termguicolors = true
opt.cul = true
2021-08-12 13:58:03 +02:00
opt.mouse = options.mouse
2021-06-26 04:36:26 +02:00
opt.signcolumn = "yes"
2021-08-12 13:58:03 +02:00
opt.cmdheight = options.cmdheight
opt.updatetime = options.updatetime -- update interval for gitsigns
opt.timeoutlen = options.timeoutlen
opt.clipboard = options.clipboard
2021-03-13 11:51:52 +01:00
-- disable nvim intro
opt.shortmess:append "sI"
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
opt.fillchars = { eob = " " }
-- Numbers
2021-08-12 13:58:03 +02:00
opt.number = options.number
opt.numberwidth = options.numberwidth
opt.relativenumber = options.relativenumber
2021-07-16 19:52:36 +02:00
-- Indenline
2021-08-12 13:58:03 +02:00
opt.expandtab = options.expandtab
opt.shiftwidth = options.shiftwidth
opt.smartindent = options.smartindent
2021-06-15 18:14:11 +02: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-08-12 13:58:03 +02:00
g.mapleader = options.mapleader
g.auto_save = options.autosave
2021-06-26 04:08:44 +02:00
-- disable builtin vim plugins
local disabled_built_ins = {
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"gzip",
"zip",
"zipPlugin",
"tar",
"tarPlugin",
"getscript",
"getscriptPlugin",
"vimball",
"vimballPlugin",
"2html_plugin",
"logipat",
"rrhelper",
"spellfile_plugin",
"matchit",
}
for _, plugin in pairs(disabled_built_ins) do
g["loaded_" .. plugin] = 1
end
2021-06-26 04:08:44 +02:00
2021-08-21 13:49:11 +02:00
-- uncomment this if you want to open nvim with a dir
-- vim.cmd [[ autocmd BufEnter * if &buftype != "terminal" | lcd %:p:h | endif ]]
-- 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
vim.cmd [[ au TermOpen term://* setlocal nonumber norelativenumber | setfiletype terminal ]]
-- Don't show status line on certain windows
vim.cmd [[ autocmd BufEnter,BufWinEnter,WinEnter,CmdwinEnter,TermEnter * lua require("utils").hide_statusline() ]]
2021-08-01 06:25:28 +02: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 ]]