mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
73 lines
3.7 KiB
Lua
73 lines
3.7 KiB
Lua
-- Options are automatically loaded before lazy.nvim startup
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
-- Add any additional options here
|
|
--
|
|
local o = vim.opt
|
|
local wo = vim.wo
|
|
local fn = vim.fn
|
|
|
|
vim.cmd.set("inccommand=split")
|
|
o.filetype = "on"
|
|
o.updatetime = 500 -- faster completion
|
|
o.timeoutlen = 800 -- time to wait for a mapped sequence to complete (in milliseconds)
|
|
o.ttimeoutlen = 300 -- Time in milliseconds to wait for a key code sequence to complete
|
|
o.backup = false -- creates a backup file
|
|
o.swapfile = false -- enable/disable swap file creation
|
|
o.dir = fn.stdpath("data") .. "/swp" -- swap file directory
|
|
o.undofile = false -- enable/disable undo file creation
|
|
o.undodir = fn.stdpath("data") .. "/undodir" -- set undo directory
|
|
o.history = 500 -- Use the 'history' option to set the number of lines from command mode that are remembered.
|
|
o.hidden = true -- required to keep multiple buffers and open multiple buffers
|
|
o.clipboard = "unnamedplus" -- allows neovim to access the system clipboard
|
|
o.fileencoding = "utf-8" -- the encoding written to a file
|
|
o.conceallevel = 0 -- so that `` is visible in markdown files
|
|
o.number = true -- set numbered lines
|
|
o.relativenumber = true -- set relative numbered lines
|
|
o.cmdheight = 1 -- space for displaying messages/commands
|
|
o.showmode = false -- we don't need to see things like -- INSERT -- anymore
|
|
o.showtabline = 2 -- always show tabs
|
|
o.laststatus = 2 -- The value of this option influences when the last window will have a status line (2 always)
|
|
o.smartcase = true -- smart case
|
|
o.smartindent = true -- make indenting smarter again
|
|
o.splitbelow = true -- force all horizontal splits to go below current window
|
|
o.splitright = true -- force all vertical splits to go to the right of current window
|
|
o.autoindent = true -- turn on auto indent.
|
|
o.expandtab = true -- convert tabs to spaces
|
|
o.smarttab = true -- turn on smart tab
|
|
o.shiftwidth = 2 -- the number of spaces inserted for each indentation
|
|
o.tabstop = 2 -- how many columns a tab counts for
|
|
o.termguicolors = true -- set term gui colors (most terminals support this)
|
|
o.cursorline = true -- highlight the current line
|
|
o.scrolloff = 8 -- Minimal number of screen lines to keep above and below the cursor
|
|
o.sidescrolloff = 5 -- The minimal number of columns to scroll horizontally
|
|
o.hlsearch = false -- highlight all matches on previous search pattern
|
|
o.ignorecase = true -- ignore case in search patterns
|
|
o.foldenable = false -- disable folding; enable with zi
|
|
o.foldmethod = "expr"
|
|
o.foldexpr = "nvim_treesitter#foldexpr()"
|
|
vim.cmd.set("nolist") -- don't show listchars.
|
|
-- o.listchars = "eol:¬,tab:>·,trail:~,extends:>,precedes:<"
|
|
o.listchars = "eol:¬,tab:>·,trail:~,extends:>,precedes:<,space:␣"
|
|
o.shortmess = o.shortmess + "c" -- prevent "pattern not found" messages
|
|
wo.colorcolumn = "99999"
|
|
o.wildmode = "full"
|
|
o.lazyredraw = false -- do not redraw screen while running macros
|
|
o.grepprg = "rg --hidden --vimgrep --smart-case --"
|
|
o.completeopt = { "menu", "menuone", "noselect", "noinsert" } -- A comma separated list of options for Insert mode completion
|
|
o.wildignorecase = true -- When set case is ignored when completing file names and directories
|
|
o.wildignore = [[
|
|
.git,.hg,.svn
|
|
*.aux,*.out,*.toc
|
|
*.o,*.obj,*.exe,*.dll,*.manifest,*.rbc,*.class
|
|
*.ai,*.bmp,*.gif,*.ico,*.jpg,*.jpeg,*.png,*.psd,*.webp
|
|
*.avi,*.divx,*.mp4,*.webm,*.mov,*.m2ts,*.mkv,*.vob,*.mpg,*.mpeg
|
|
*.mp3,*.oga,*.ogg,*.wav,*.flac
|
|
*.eot,*.otf,*.ttf,*.woff
|
|
*.doc,*.pdf,*.cbr,*.cbz
|
|
*.zip,*.tar.gz,*.tar.bz2,*.rar,*.tar.xz,*.kgb
|
|
*.swp,.lock,.DS_Store,._*
|
|
*/tmp/*,*.so,*.swp,*.zip,**/node_modules/**,**/target/**,**.terraform/**"
|
|
]]
|
|
o.viminfo = "" -- disable viminfo from copying information from current session, for security.
|
|
vim.g.snacks_animate = false
|