From 97af93b2a8ebc89364852e3f63e9fd8cfedaeedf Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 9 Jun 2025 13:43:45 +0300 Subject: =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D1=91=D0=BB=20dotfiles?= =?UTF-8?q?=20=D0=BD=D0=B0=20stow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nvim/lua/options.lua | 65 ---------------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 nvim/lua/options.lua (limited to 'nvim/lua/options.lua') diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua deleted file mode 100644 index a0b7dbb..0000000 --- a/nvim/lua/options.lua +++ /dev/null @@ -1,65 +0,0 @@ -local options = { - backup = false, - clipboard = "unnamedplus", - cmdheight = 2, - completeopt = { "menuone", "noselect" }, - conceallevel = 0, - fileencoding = "utf-8", - hidden = true, - hlsearch = true, - ignorecase = true, - mouse = "", - pumheight = 10, - showmode = false, - showtabline = 2, - smartcase = true, - smartindent = true, - splitbelow = true, - splitright = true, - swapfile = false, - termguicolors = true, - undofile = true, - updatetime = 300, - writebackup = false, - shiftwidth = 4, - tabstop = 4, - cursorline = true, - number = true, - relativenumber = true, - numberwidth = 4, - signcolumn = "yes", - wrap = true, - scrolloff = 8, - sidescrolloff = 8, - syntax = "on", - foldmethod = "expr", - foldexpr = "v:lua.vim.treesitter.foldexpr()", - -- foldexpr = "nvim_treesitter#foldexpr()" - foldnestmax = 10, - foldlevel = 9, - -- foldlevelstart = 99, - scrolloff = 999, - so = vim.fn.floor(vim.fn.winheight(0) / 2), - guicursor = "n-v-c:block,i-ci-ve:hor10,r-cr:hor20,o:hor50,a:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor,sm:block-blinkwait175-blinkoff150-blinkon175", - langmap = "ФИСВУАПРШОЛДЬТЩЗЙКЫЕГМЦЧНЯЖ;ABCDEFGHIJKLMNOPQRSTUVWXYZ:,фисвуапршолдьтщзйкыегмцчня;abcdefghijklmnopqrstuvwxyz", - spelllang = "en,ru_yo", - spell = true, -} -vim.opt.formatoptions:append({ r = true, o = true }) -vim.opt.shortmess:append("c") - -for k, v in pairs(options) do - vim.opt[k] = v -end -vim.wo.foldmethod = "expr" -vim.wo.foldexpr = "v:lua.vim.treesitter.foldexpr()" -vim.cmd("set whichwrap+=<,>,[,],h,l") -vim.filetype.add({ - extension = { - templ = "templ", - }, - pattern = { - [".*/todo.txt"] = "todotxt", - }, -}) -vim.cmd([[colorscheme neonxp]]) -- cgit v1.2.3