all repos

init.lua @ 4b96398fe98a58f205499b1fdbe5df0236063d37

my nvim config
1 files changed, 5 insertions(+), 16 deletions(-)
update vim options
Author: neoteny ss2316544@gmail.com
Committed at: 2022-01-01 12:09:04 +0200
Parent: 5d1d502
M lua/options.lua

@@ -1,25 +1,18 @@

local o = vim.opt +-- Mappings vim.g.mapleader = " " vim.g.maplocalleader = "," -vim.g.netrw_banner = false --- o.laststatus = 0 -o.backup = false +-- general +o.completeopt = { "menuone", "noselect" } o.clipboard = "unnamedplus" o.cmdheight = 1 -o.colorcolumn = "99999" -o.completeopt = { "menuone", "noselect" } -o.conceallevel = 0 o.fileencoding = "utf-8" -o.foldmethod = "manual" -o.foldexpr = "" -o.guifont = "JetBrains Mono Nerd Font:h17" o.hidden = true -o.hlsearch = true o.ignorecase = true o.mouse = "a" -o.pumheight = 10 +o.pumheight = 8 o.showmode = false o.smartcase = true o.smartindent = true

@@ -27,21 +20,17 @@ o.splitbelow = true

o.splitright = true o.swapfile = false o.termguicolors = true --- o.timeoutlen = 100 o.title = true o.undofile = true -o.updatetime = 300 +o.updatetime = 1500 o.writebackup = false o.expandtab = true o.shiftwidth = 2 o.tabstop = 2 o.cursorline = true o.number = true -o.relativenumber = true o.numberwidth = 4 o.signcolumn = "yes" o.wrap = false -o.spell = false -o.spelllang = "en" o.scrolloff = 8 o.sidescrolloff = 8