40 lines
1.1 KiB
Lua
40 lines
1.1 KiB
Lua
local helpers = require("my.helpers")
|
|
|
|
local M = {}
|
|
|
|
function M.setup()
|
|
local opt = vim.opt -- to set options
|
|
|
|
-- Basic options
|
|
opt.joinspaces = false -- No double spaces with join
|
|
opt.list = true -- Show some invisible characters
|
|
|
|
opt.number = true -- Show line numbers
|
|
opt.relativenumber = true -- Relative line numbers
|
|
|
|
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
|
|
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
|
|
opt.completeopt = {"menu", "menuone", "noselect"}
|
|
|
|
-- Set leader
|
|
helpers.global("mapleader", "<Space>")
|
|
|
|
-- Set theme
|
|
require('github-theme').setup({theme_style = "light", dark_float = true})
|
|
end
|
|
|
|
return M
|