2023-10-22 10:13:07 +00:00
|
|
|
-- [[ Setting options ]]
|
2024-02-26 19:46:46 +00:00
|
|
|
-- See `:help vim.opt`
|
2023-10-22 10:13:07 +00:00
|
|
|
-- NOTE: You can change these options as you wish!
|
2024-02-26 19:46:46 +00:00
|
|
|
-- For more options, you can see `:help option-list`
|
2023-10-22 10:13:07 +00:00
|
|
|
|
2024-01-22 09:58:10 +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'
|
2024-01-22 09:58:10 +00:00
|
|
|
|
|
|
|
-- Format settings
|
2023-10-22 10:13:07 +00:00
|
|
|
-- Make line numbers default
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.number = true
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.relativenumber = true
|
2024-01-22 09:58:10 +00:00
|
|
|
|
|
|
|
-- 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
|
2024-01-22 09:58:10 +00:00
|
|
|
|
|
|
|
-- Line wrap
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.wrap = false
|
2024-01-22 09:58:10 +00:00
|
|
|
|
2024-02-26 19:46:46 +00:00
|
|
|
-- 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
|
|
|
|
2024-03-18 17:50:47 +00:00
|
|
|
-- Don't show the mode, since it's already in the status line
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.showmode = false
|
2024-02-27 13:38:33 +00:00
|
|
|
|
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
|
|
|
|
2024-03-18 17:50:47 +00:00
|
|
|
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
|
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
|
2024-03-15 17:15:40 +00:00
|
|
|
|
|
|
|
-- Decrease mapped sequence wait time
|
|
|
|
-- Displays which-key popup sooner
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.timeoutlen = 300
|
2023-10-22 10:13:07 +00:00
|
|
|
|
2024-02-27 13:38:33 +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
|
2024-02-27 13:38:33 +00:00
|
|
|
|
2024-03-18 17:50:47 +00:00
|
|
|
-- Sets how neovim will display certain whitespace characters in the editor.
|
2024-03-01 22:11:08 +00:00
|
|
|
-- See `:help 'list'`
|
|
|
|
-- and `:help 'listchars'`
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.list = true
|
|
|
|
vim.opt.listchars = {
|
|
|
|
tab = '» ',
|
|
|
|
trail = '·',
|
|
|
|
nbsp = '␣',
|
2024-03-01 08:15:22 +00:00
|
|
|
}
|
2024-02-26 19:46:46 +00:00
|
|
|
|
2024-02-27 13:38:33 +00:00
|
|
|
-- Preview substitutions live, as you type!
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.inccommand = 'split'
|
2024-02-27 13:38:33 +00:00
|
|
|
|
|
|
|
-- 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
|
|
|
|
2024-03-07 11:50:37 +00:00
|
|
|
-- Minimal spacing to keep around the cursor.
|
2024-03-01 08:23:41 +00:00
|
|
|
vim.opt.scrolloff = 8
|
2024-03-07 11:50:37 +00:00
|
|
|
vim.opt.sidescrolloff = 12
|
2024-03-01 08:23:41 +00:00
|
|
|
|
2024-04-08 09:39:46 +00:00
|
|
|
-- Options specifically targeted at Neovide
|
|
|
|
if vim.g.neovide then
|
|
|
|
vim.o.guifont = 'CaskaydiaCove Nerd Font Mono:h14'
|
2024-04-08 11:19:08 +00:00
|
|
|
vim.g.neovide_hide_mouse_when_typing = true
|
2024-04-08 09:39:46 +00:00
|
|
|
vim.g.neovide_cursor_animation_length = 0
|
|
|
|
vim.g.neovide_cursor_trail_length = 0
|
|
|
|
end
|
|
|
|
|
2024-03-01 08:23:41 +00:00
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|