ref(nvim): stylua

This commit is contained in:
Léana 江 2024-02-17 12:00:05 +01:00 committed by Léana 江
parent f115a84799
commit 531862a6c4
20 changed files with 369 additions and 369 deletions

View file

@ -1,47 +1,47 @@
local opt = vim.opt
local opt = vim.opt
opt.hlsearch = false
opt.incsearch = true
opt.hlsearch = false
opt.incsearch = true
opt.number = true
opt.number = true
opt.relativenumber = true
opt.cursorline = true
opt.signcolumn = "yes"
opt.cursorline = true
opt.signcolumn = "yes"
opt.tabstop = 4
opt.expandtab = true
opt.shiftwidth = 4
opt.tabstop = 4
opt.expandtab = true
opt.shiftwidth = 4
opt.wrap = false -- Slows the editor
opt.linebreak = true
opt.breakindent = true
opt.filetype = "on"
opt.wrap = false -- Slows the editor
opt.linebreak = true
opt.breakindent = true
opt.filetype = "on"
opt.swapfile = false
opt.backup = false
opt.undofile = true
opt.swapfile = false
opt.backup = false
opt.undofile = true
opt.termguicolors = true
opt.mouse = "a"
opt.termguicolors = true
opt.mouse = "a"
opt.ignorecase = true
opt.smartcase = true
opt.autoindent = true
opt.smartindent = true
opt.ignorecase = true
opt.smartcase = true
opt.autoindent = true
opt.smartindent = true
opt.scrolloff = 3
opt.scrolloff = 3
opt.colorcolumn = "80"
opt.colorcolumn = "80"
opt.foldlevel = 99
opt.foldlevel = 99
opt.foldlevelstart = 99
opt.foldenable = true
opt.foldenable = true
opt.winbar = "%{%v:lua.require'winbar'.eval()%}"
opt.winbar = "%{%v:lua.require'winbar'.eval()%}"
opt.showmode = false
opt.showmode = false
opt.listchars = { tab = "", trail = "" }
opt.list = true
opt.listchars = { tab = "", trail = "" }
opt.list = true
vim.g.netrw_banner = 0