51 lines
1.6 KiB
Lua
51 lines
1.6 KiB
Lua
vim.cmd("let g:netrw_liststyle = 3")
|
|
|
|
local opt = vim.opt
|
|
|
|
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
|
|
|
opt.relativenumber = true
|
|
opt.number = true
|
|
|
|
-- tabs & indentation
|
|
opt.tabstop = 2 -- 2 spaces for tabs (prettier default)
|
|
opt.shiftwidth = 2 -- 2 spaces for indent width
|
|
opt.expandtab = true -- expand tab to spaces
|
|
opt.autoindent = true -- copy indent from current line when starting new one
|
|
|
|
opt.wrap = false
|
|
|
|
-- search settings
|
|
opt.ignorecase = true -- ignore case when searching
|
|
opt.smartcase = true -- if you include mixed case in your search, assumes you want case-sensitive
|
|
|
|
opt.cursorline = true
|
|
|
|
-- turn on termguicolors for tokyonight colorscheme to work
|
|
-- (have to use iterm2 or any other true color terminal)
|
|
opt.termguicolors = true
|
|
opt.background = "dark" -- colorschemes that can be light or dark will be made dark
|
|
opt.signcolumn = "yes" -- show sign column so that text doesn't shift
|
|
|
|
-- backspace
|
|
opt.backspace = "indent,eol,start" -- allow backspace on indent, end of line or insert mode start position
|
|
|
|
-- clipboard
|
|
opt.clipboard:append("unnamedplus") -- use system clipboard as default register
|
|
|
|
-- split windows
|
|
opt.splitright = true -- split vertical window to the right
|
|
opt.splitbelow = true -- split horizontal window to the bottom
|
|
|
|
-- turn off swapfile
|
|
opt.swapfile = false
|
|
|
|
-- Enable soft wrapping of long lines
|
|
opt.wrap = true
|
|
|
|
-- Break lines at convenient points (e.g. after whitespace) rather than in the middle of a word
|
|
opt.linebreak = true
|
|
|
|
-- Optionally, add a prefix to wrapped lines to visually indicate a wrap
|
|
opt.showbreak = "↪ "
|