/
alkis
/
nvim
Обзор
Документация
Войти
/
alkis
/
nvim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lua/config/options.lua
86 строк
4 KB
avkis
Last changes
30 июн 2025, 06:49
30 июн 2025, 06:49
dce13aa
Код
Авторство
О чём код?
vim.opt.expandtab = false -- Convert tabs to spaces vim.opt.tabstop = 2 -- How many spaces are shown per Tab vim.opt.softtabstop = 2 -- How many spaces are applied when pressing Tab vim.opt.smarttab = true vim.opt.autoindent = true -- Keep indentation from previous line -- Store undos between sessions vim.opt.undofile = true -- Don't show the mode, since it's already in the status line vim.opt.showmode = false -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term vim.opt.ignorecase = true vim.opt.smartcase = true -- Sets how neovim will display certain whitespace characters in the editor. -- See `:help 'list'` -- and `:help 'listchars'` vim.opt.list = true vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "␣" } -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 5 vim.g.mapleader = " " -- change leader to a space vim.g.maplocalleader = " " -- change localleader to a space vim.g.loaded_netrw = 1 -- disable netrw vim.g.loaded_netrwPlugin = 1 -- disable netrw vim.opt.incsearch = true -- make search act like search in modern browsers vim.opt.backup = false -- creates a backup file vim.opt.clipboard = "unnamedplus" -- allows neovim to access the system clipboard vim.opt.cmdheight = 1 -- more space in the neovim command line for displaying messages vim.opt.completeopt = { "menu", "menuone", "noselect" } -- mostly just for cmp vim.opt.conceallevel = 0 -- so that `` is visible in markdown files vim.opt.fileencoding = "utf-8" -- the encoding written to a file vim.opt.hlsearch = true -- highlight all matches on previous search pattern vim.opt.mouse = "a" -- allow the mouse to be used in neovim vim.opt.pumheight = 10 -- pop up menu height vim.opt.showtabline = 0 -- always show tabs vim.opt.smartindent = true -- make indenting smarter again vim.opt.splitbelow = true -- force all horizontal splits to go below current window vim.opt.splitright = true -- force all vertical splits to go to the right of current window vim.opt.swapfile = false -- creates a swapfile vim.opt.termguicolors = true -- set term gui colors (most terminals support this) vim.opt.timeoutlen = 1000 -- time to wait for a mapped sequence to complete (in milliseconds) vim.opt.updatetime = 100 -- faster completion (4000ms default) vim.opt.writebackup = false -- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited vim.opt.shiftwidth = 2 -- the number of spaces inserted for each indentation vim.opt.cursorline = false -- highlight the current line vim.opt.number = true -- set numbered lines vim.opt.breakindent = true -- wrap lines with indent vim.opt.relativenumber = true -- set relative numbered lines vim.opt.numberwidth = 4 -- set number column width to 2 {default 4} vim.opt.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time vim.opt.wrap = false -- display lines as one long line vim.opt.sidescrolloff = 8 -- Makes sure there are always eight lines of context vim.opt.showcmd = false -- Don't show the command in the last line vim.opt.ruler = false -- Don't show the ruler vim.opt.guifont = "monospace:h17" -- the font used in graphical neovim applications vim.opt.title = true -- set the title of window to the value of the titlestring vim.opt.confirm = true -- confirm to save changes before exiting modified buffer vim.opt.fillchars = { eob = " " } -- change the character at the end of buffer -- vim.opt.guicursor = "" -- set the cursor to be a vertical bar -- vim.opt.cursorlineopt = "number" -- set the cursorline vim.opt.laststatus = 0 -- Always display the status line vim.filetype.add({ extension = { env = "dotenv", }, filename = { [".env"] = "dotenv", ["env"] = "dotenv", }, pattern = { ["[jt]sconfig.*.json"] = "jsonc", ["%.env%.[%w_.-]+"] = "dotenv", }, }) -- vim.opt.winbar = "%=%m %f"