nvim-config/lua/options.lua

84 lines
2.0 KiB
Lua
Raw Normal View History

2023-10-22 10:13:07 +00:00
-- [[ Setting options ]]
-- See `:help vim.opt`
2023-10-22 10:13:07 +00:00
-- NOTE: You can change these options as you wish!
-- For more options, you can see `:help option-list`
2023-10-22 10:13:07 +00:00
-- Set display language
vim.api.nvim_exec2('language en_US', {})
-- Shell options
-- Sets the shell to use for system() and ! commands
2024-03-01 08:23:41 +00:00
vim.opt.shell = 'powershell.exe'
vim.opt.shellcmdflag = '-NonInteractive -NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command '
vim.opt.shellxquote = ''
vim.opt.shellquote = ''
vim.opt.shellredir = '2>&1 | Out-File -Encoding UTF8 %s'
vim.opt.shellpipe = '2>&1 | Out-File -Encoding UTF8 %s'
-- Format settings
2023-10-22 10:13:07 +00:00
-- Make line numbers default
2024-03-01 08:23:41 +00:00
vim.opt.nu = true
vim.opt.relativenumber = true
-- Indenting
2024-03-01 08:23:41 +00:00
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Line wrap
2024-03-01 08:23:41 +00:00
vim.opt.wrap = false
-- Enable mouse mode, can be useful for resizing splits for example!
2024-03-01 08:23:41 +00:00
vim.opt.mouse = 'a'
2023-10-22 10:13:07 +00:00
-- Don't show the mode, since it's already in status line
2024-03-01 08:23:41 +00:00
vim.opt.showmode = false
2023-10-22 10:13:07 +00:00
-- Sync clipboard between OS and Neovim.
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
2024-03-01 08:23:41 +00:00
vim.opt.clipboard = 'unnamedplus'
2023-10-22 10:13:07 +00:00
-- Enable break indent
2024-03-01 08:23:41 +00:00
vim.opt.breakindent = true
2023-10-22 10:13:07 +00:00
-- Save undo history
2024-03-01 08:23:41 +00:00
vim.opt.undofile = true
2023-10-22 10:13:07 +00:00
-- Case-insensitive searching UNLESS \C or capital in search
2024-03-01 08:23:41 +00:00
vim.opt.ignorecase = true
vim.opt.smartcase = true
2023-10-22 10:13:07 +00:00
-- Keep signcolumn on by default
2024-03-01 08:23:41 +00:00
vim.opt.signcolumn = 'yes'
2023-10-22 10:13:07 +00:00
-- Decrease update time
2024-03-01 08:23:41 +00:00
vim.opt.updatetime = 250
vim.opt.timeoutlen = 300
2023-10-22 10:13:07 +00:00
-- Configure how new splits should be opened
2024-03-01 08:23:41 +00:00
vim.opt.splitright = true
vim.opt.splitbelow = true
-- Sets how neovim will display certain whitespace in the editor.
-- See `:help 'list'`
-- and `:help 'listchars'`
2024-03-01 08:23:41 +00:00
vim.opt.list = true
vim.opt.listchars = {
tab = '» ',
trail = '·',
nbsp = '',
}
-- Preview substitutions live, as you type!
2024-03-01 08:23:41 +00:00
vim.opt.inccommand = 'split'
-- Show which line your cursor is on
2024-03-01 08:23:41 +00:00
vim.opt.cursorline = true
2023-10-22 10:13:07 +00:00
-- Minimal number of screen lines to keep above and below the cursor.
2024-03-01 08:23:41 +00:00
vim.opt.scrolloff = 8
-- vim: ts=2 sts=2 sw=2 et