summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/options.lua
blob: cf19c110db03c27432a155f5a8ff4d16902d59da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
vim.cmd('syntax enable')
vim.cmd('set undodir=$XDG_CACHE_HOME/nvim/undo')
vim.cmd('set undofile')

local set = vim.opt
set.mouse = "a"
set.hidden = true
set.wildmenu = true
set.wildignorecase = true
set.fileignorecase = true
set.showcmd = true
set.hlsearch = true
set.ignorecase = true
set.smartcase = true
set.incsearch = true
set.backspace = 'indent,eol,start'
set.pastetoggle = '<F11>'
set.confirm = true
set.number = true
set.relativenumber = true
set.shiftwidth = 4
set.softtabstop = 4
set.autoindent = true
set.expandtab = true
-- set.showmode = false
-- set.ruler = false
set.timeout = false
set.ttimeoutlen = 200
set.wrap = false
-- set.fcs = 'eob: '
set.swapfile = false
set.pumblend = 0
set.splitright = true
set.splitbelow = true
set.cursorline = true
set.signcolumn = 'auto'
set.title = true
-- set.cmdheight = 0
set.winbar = '%=%m %f'

vim.cmd([[
augroup CursorLine
    au!
    au VimEnter,WinEnter,BufWinEnter * setlocal cursorline
    au WinLeave * setlocal nocursorline
augroup END

autocmd FileType TelescopePrompt setl nocursorline
]])

-- Disable default 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
    vim.g["loaded_" .. plugin] = 1
end