reverted back to kickstart template for performance
This commit is contained in:
parent
1e10919b8b
commit
06552c8956
7 changed files with 1074 additions and 1076 deletions
|
|
@ -1,4 +1,4 @@
|
|||
vim.cmd("let g:netrw_liststyle = 3")
|
||||
vim.cmd 'let g:netrw_liststyle = 3'
|
||||
|
||||
local opt = vim.opt
|
||||
|
||||
|
|
@ -11,7 +11,7 @@ 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
|
||||
opt.wrap = true
|
||||
|
||||
-- search settings
|
||||
opt.ignorecase = true -- ignore case when searching
|
||||
|
|
@ -22,14 +22,14 @@ 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
|
||||
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
|
||||
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
|
||||
opt.clipboard:append 'unnamedplus' -- use system clipboard as default register
|
||||
|
||||
-- split windows
|
||||
opt.splitright = true -- split vertical window to the right
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue