blob: 6153825cf91db7b67c8d0bc9765807eaeae1d9ae (
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
|
local o = vim.o
local opt = vim.opt
o.smarttab = true
o.exrc = true
o.clipboard = "unnamedplus"
o.termguicolors = true
o.list = true
o.autochdir = true
o.wrap = false
o.number = true
o.relativenumber = true
o.expandtab = true
o.tabstop = 4
o.smartindent = true
o.shiftwidth = 4
o.sidescroll = 5
o.timeout= false
o.scrolloff = 4
o.sidescrolloff = 4
o.sidescroll = 1
o.cursorline = true
o.mouse = ""
o.fillchars = 'eob: '
vim.g.mapleader = " "
vim.g.maplocalleader = vim.g.mapleader
opt.listchars = { space = "⋅", tab = "--", precedes = "…", extends = "…" }
|