mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
23 lines
586 B
Lua
23 lines
586 B
Lua
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
vim.opt.tabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.expandtab = false
|
|
vim.opt.smartindent = true
|
|
vim.opt.mouse = "a"
|
|
vim.opt.ignorecase = false
|
|
vim.opt.smartcase = true
|
|
vim.opt.hlsearch = true
|
|
vim.opt.colorcolumn = ""
|
|
vim.opt.syntax = "enable"
|
|
vim.opt.termguicolors = true
|
|
vim.opt.background = "dark"
|
|
vim.opt.backup = false
|
|
vim.opt.writebackup = false
|
|
vim.opt.swapfile = false
|
|
vim.opt.undofile = true
|
|
vim.opt.timeout = false
|
|
vim.g.mapleader = ","
|
|
vim.g.rust_recommended_style = true
|
|
vim.g.targets_nl = "nh"
|
|
vim.o.cpoptions = "aABceFs"
|