49 lines
1.4 KiB
Lua
49 lines
1.4 KiB
Lua
local helpers = require("my.helpers")
|
|
|
|
local M = {}
|
|
|
|
function M.setup()
|
|
local opt = vim.opt -- to set options
|
|
|
|
-- Disable filetype.vim
|
|
vim.g.do_filetype_lua = true
|
|
vim.g.did_load_filetypes = false
|
|
|
|
-- Basic options
|
|
opt.joinspaces = false -- No double spaces with join
|
|
opt.list = true -- Show some invisible characters
|
|
opt.cmdheight = 0 -- Hide command line when it's not getting used
|
|
|
|
-- Line numbers
|
|
opt.number = true -- Show line numbers
|
|
opt.relativenumber = true -- Relative line numbers
|
|
|
|
-- TODO: only do this for specific filestypes
|
|
opt.expandtab = true -- Use spaces for the tab char
|
|
|
|
opt.scrolloff = 4 -- Lines of context
|
|
opt.shiftround = true -- Round indent
|
|
opt.shiftwidth = 2 -- Size of an indent
|
|
opt.termguicolors = true -- True color support
|
|
|
|
opt.ignorecase = true -- Ignore case
|
|
opt.smartcase = true -- Do not ignore case with capitals
|
|
|
|
opt.smartindent = true -- Insert indents automatically
|
|
|
|
opt.splitbelow = true -- Put new windows below current
|
|
opt.splitright = true -- Put new windows right of current
|
|
|
|
opt.wrap = false -- Disable line wrap (by default)
|
|
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
|
|
opt.completeopt = {"menu", "menuone", "noselect"}
|
|
|
|
-- Set leader
|
|
helpers.global("mapleader", " ")
|
|
|
|
-- Import other options
|
|
require("my.options.folding").setup()
|
|
end
|
|
|
|
return M
|