neovim-config/lua/options.lua

79 lines
1.6 KiB
Lua
Raw Normal View History

2021-06-26 02:36:26 +00:00
local opt = vim.opt
local g = vim.g
2021-06-26 02:36:26 +00: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-26 02:36:26 +00: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
opt.timeoutlen = 400
2021-06-26 02:36:26 +00:00
opt.clipboard = "unnamedplus"
2021-03-13 10:51:52 +00:00
-- disable nvim intro
opt.shortmess:append("sI")
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
vim.cmd("let &fcs='eob: '")
-- Numbers
2021-06-26 02:36:26 +00:00
opt.number = true
opt.numberwidth = 2
-- opt.relativenumber = true
2021-07-16 17:52:36 +00:00
-- Indenline
2021-06-26 02:36:26 +00:00
opt.expandtab = true
opt.shiftwidth = 2
opt.smartindent = true
2021-06-15 16:14:11 +00: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")
g.mapleader = " "
g.auto_save = false
2021-06-26 02:08:44 +00: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"
}
for _, plugin in pairs(disabled_built_ins) do
vim.g["loaded_" .. plugin] = 1
end
2021-06-26 02:08:44 +00:00
2021-03-08 05:24:53 +00:00
local M = {}
-- file extension specific tabbing
2021-06-26 02:08:44 +00:00
-- vim.cmd([[autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
2021-03-08 05:24:53 +00:00
return M