all repos

init.lua @ 1cc331e26191ba2d5f3607a543257432ecaa6e68

my nvim config
1 files changed, 22 insertions(+), 24 deletions(-)
updated options
Author: Smirnov Alexander ss2316544@gmail.com
Committed at: 2022-03-26 19:08:59 +0200
Parent: b4e9567
M lua/fk/options.lua

@@ -1,41 +1,39 @@

local o = vim.opt --- Mappings +-- leader vim.g.mapleader = " " vim.g.maplocalleader = "," --- GUI -o.guifont = "Jetbrains Mono:h12" +-- tab +o.smartindent = true +o.expandtab = true +o.cursorline = true +o.shiftwidth = 4 +o.tabstop = 4 + +-- serarch +o.ignorecase = true +o.smartcase = true --- general +o.number = true +o.termguicolors = true o.completeopt = { "menuone", "noselect" } o.clipboard = "unnamedplus" -o.cmdheight = 1 o.timeoutlen = 250 o.fileencoding = "utf-8" -o.hidden = true -o.ignorecase = true o.mouse = "a" -o.pumheight = 8 o.showmode = false -o.smartcase = true -o.smartindent = true o.splitbelow = true o.splitright = true -o.swapfile = false -o.termguicolors = true +o.pumheight = 8 +o.numberwidth = 4 +o.scrolloff = 8 +o.sidescrolloff = 8 +o.signcolumn = "yes" o.title = true +o.wrap = false + +-- swap files o.undofile = true -o.updatetime = 1500 +o.swapfile = false o.writebackup = false -o.expandtab = true -o.shiftwidth = 4 -o.tabstop = 4 -o.cursorline = true -o.number = true -o.relativenumber = false -o.numberwidth = 4 -o.signcolumn = "yes" -o.wrap = false -o.scrolloff = 8 -o.sidescrolloff = 8