58 lines
1.2 KiB
Lua
58 lines
1.2 KiB
Lua
local opt = vim.opt
|
|
|
|
opt.relativenumber = true
|
|
opt.number = true
|
|
|
|
-- tabs & indentation
|
|
opt.tabstop = 2
|
|
opt.shiftwidth = 2
|
|
opt.expandtab = true
|
|
opt.autoindent = true
|
|
|
|
-- disable line wrapping
|
|
opt.wrap = false
|
|
|
|
-- search settings
|
|
opt.ignorecase = true
|
|
opt.smartcase = true
|
|
|
|
-- folding
|
|
opt.foldmethod = "indent"
|
|
opt.foldlevelstart = 0
|
|
opt.foldlevel = 0
|
|
|
|
-- Disable folding in Telescope's result window.
|
|
vim.api.nvim_create_autocmd("FileType", { pattern = "TelescopeResults", command = [[setlocal nofoldenable]] })
|
|
|
|
-- undo
|
|
opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
|
|
opt.undofile = true
|
|
|
|
-- search behaviour
|
|
opt.hlsearch = false
|
|
opt.incsearch = true
|
|
|
|
-- cursor always stays in the middle
|
|
opt.scrolloff = 999
|
|
|
|
-- colorscheme
|
|
opt.termguicolors = true
|
|
opt.background = "dark"
|
|
opt.signcolumn = "yes"
|
|
|
|
-- backspace
|
|
opt.backspace = "indent,eol,start"
|
|
|
|
-- clipboard
|
|
opt.clipboard:append("unnamedplus")
|
|
|
|
-- splitting windows
|
|
opt.splitright = true
|
|
opt.splitbelow = true
|
|
|
|
opt.iskeyword:append("-")
|
|
|
|
vim.cmd([[autocmd BufEnter *.pdf execute "!zathura '%'" | bdelete %]])
|
|
vim.cmd([[autocmd BufEnter *.jpg execute "!open '%'" | bdelete %]])
|
|
vim.cmd([[autocmd BufEnter *.png execute "!open '%'" | bdelete %]])
|