dotfiles/home/.config/nvim/lua/settings.lua

37 lines
580 B
Lua
Raw Normal View History

local o = vim.o
local g = vim.g
-- True colors
o.termguicolors = true
-- Floating window transparency
o.winblend = 10
2021-08-17 22:36:48 +03:00
-- Diff settings
o.diffopt = 'filler,internal,algorithm:histogram,indent-heuristic'
2021-08-17 22:36:48 +03:00
-- Allow switching buffers with unsaved changes
o.hidden = true
2021-08-18 09:29:44 +03:00
-- Show line numbers
o.number = true
2021-08-18 09:29:44 +03:00
-- Blinking cursor
o.guicursor = 'a:blinkon1'
-- Enable global statusline
o.laststatus = 3
-- Hide cmdline
o.cmdheight = 0
-- Use suda by default
g.suda_smart_edit = 1
-- Case insensitive search
o.ignorecase = true
o.smartcase = true
2022-08-23 22:18:57 +03:00
-- Set leader
g.mapleader = " "