67 lines
1.4 KiB
Lua
67 lines
1.4 KiB
Lua
vim.o.showmatch = true
|
|
|
|
vim.wo.number = true
|
|
vim.wo.relativenumber = true
|
|
|
|
vim.o.mouse = "a"
|
|
|
|
vim.o.ignorecase = true
|
|
vim.o.smartcase = true
|
|
vim.o.expandtab = true
|
|
vim.o.shiftwidth = 4
|
|
vim.o.tabstop = 4
|
|
vim.o.cursorline = true
|
|
|
|
-- Enable auto-indentation
|
|
vim.o.autoindent = true
|
|
|
|
-- Highlight search results
|
|
vim.o.hlsearch = true
|
|
|
|
-- Highlight current line
|
|
vim.o.cursorline = true
|
|
vim.o.cursorlineopt = "number"
|
|
|
|
-- Increase speed for terminals
|
|
vim.o.ttyfast = true
|
|
|
|
vim.g.nvim_tree_respect_buf_cwd = 1
|
|
vim.g.NERDCompactSexyComs = 1
|
|
--Set completeopt to have a better completion experience
|
|
-- :help completeopt
|
|
-- menuone: popup even when there's only one match
|
|
-- noinsert: Do not insert text until a selection is made
|
|
-- noselect: Do not select, force to select one from the menu
|
|
-- shortness: avoid showing extra messages when using completion
|
|
-- updatetime: set updatetime for CursorHold
|
|
vim.opt.completeopt = { "menuone", "noselect", "noinsert" }
|
|
vim.opt.shortmess = vim.opt.shortmess + { c = true }
|
|
vim.g.updatetime = 300
|
|
|
|
vim.o.signcolumn = "yes"
|
|
|
|
vim.g.mapleader = " "
|
|
|
|
vim.o.clipboard = "unnamedplus"
|
|
|
|
vim.filetype.add({
|
|
pattern = {
|
|
[".*/hypr/.*%.conf"] = "hyprlang",
|
|
[".*%.typ"] = "typst",
|
|
},
|
|
})
|
|
|
|
vim.o.undofile = true
|
|
vim.diagnostic.config({
|
|
virtual_text = false,
|
|
signs = true,
|
|
update_in_insert = true,
|
|
underline = true,
|
|
severity_sort = false,
|
|
float = {
|
|
border = "rounded",
|
|
source = true,
|
|
header = "",
|
|
prefix = "",
|
|
},
|
|
})
|