blob: 4bd956a7927f00734ce7970c2ab70ffe6bea0ef0 (
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
|
-- Main
vim.opt.nu = true
vim.opt.clipboard = { 'unnamed', 'unnamedplus' }
vim.opt.wrap = false
vim.opt.termguicolors = true
vim.opt.swapfile = false
-- Tabs
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Cursor
vim.opt.guicursor = block
vim.opt.scrolloff = 999
vim.opt.sidescrolloff = 999
-- Search
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.ignorecase = true
-- Misc
vim.opt.formatoptions:remove{ "c", "r", "o" } -- No nextLine autocomments
vim.opt.smartindent = true
vim.g.netrw_banner = 0
require("miself")
|