2021-08-08 15:33:23 +03:00
|
|
|
local o = vim.o
|
|
|
|
local g = vim.g
|
2023-11-17 08:01:52 +02:00
|
|
|
o.pumblend = 10
|
2021-08-08 15:33:23 +03:00
|
|
|
|
2023-01-31 22:43:39 +02:00
|
|
|
-- Relative line numbers
|
2023-11-17 08:01:52 +02:00
|
|
|
o.number = true
|
2023-01-31 22:43:39 +02:00
|
|
|
o.relativenumber = true
|
|
|
|
|
2021-08-08 15:33:23 +03:00
|
|
|
-- True colors
|
|
|
|
o.termguicolors = true
|
|
|
|
|
2023-11-17 23:28:48 +02:00
|
|
|
-- Enable cursorline highlighting
|
|
|
|
o.cursorline = true
|
|
|
|
|
2021-08-08 15:33:23 +03:00
|
|
|
-- Floating window transparency
|
|
|
|
o.winblend = 10
|
|
|
|
|
2022-10-20 11:24:54 +03:00
|
|
|
-- Set window title
|
|
|
|
o.title = true
|
2022-10-26 14:08:20 +03:00
|
|
|
o.titlestring = "NeoVim: " .. vim.fn.getcwd()
|
2022-10-20 11:24:54 +03:00
|
|
|
|
2021-08-17 22:36:48 +03:00
|
|
|
-- Diff settings
|
2022-10-26 14:08:20 +03:00
|
|
|
o.diffopt = "filler,internal,algorithm:histogram,indent-heuristic"
|
2021-08-17 22:36:48 +03:00
|
|
|
|
2021-10-06 16:31:09 +03:00
|
|
|
-- Allow switching buffers with unsaved changes
|
2022-09-02 23:49:56 +03:00
|
|
|
o.hidden = true
|
2021-10-06 16:31:09 +03:00
|
|
|
|
2022-09-03 14:41:13 +03:00
|
|
|
o.guicursor = table.concat({
|
2023-06-17 14:35:24 +03:00
|
|
|
"i:ver1", -- Vertical bar cursor in insert mode
|
|
|
|
"a:blinkon1", -- Blinking cursor in all modes
|
2022-10-26 14:08:20 +03:00
|
|
|
}, ",")
|
2021-08-08 15:33:23 +03:00
|
|
|
|
2022-09-02 23:49:56 +03:00
|
|
|
-- Enable global statusline
|
|
|
|
o.laststatus = 3
|
|
|
|
|
2021-08-08 15:33:23 +03:00
|
|
|
-- 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 = " "
|
2022-09-03 00:33:55 +03:00
|
|
|
|
|
|
|
-- Indentation settings
|
|
|
|
o.tabstop = 4
|
|
|
|
o.shiftwidth = 4
|
|
|
|
o.smartindent = true
|