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
|
|
|
|
|
|
|
-- Make line numbers default
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.number = true
|
|
|
|
-- You can also add relative line numbers, for help with jumping.
|
|
|
|
-- Experiment for yourself to see if you like it!
|
|
|
|
-- vim.opt.relativenumber = true
|
|
|
|
|
|
|
|
-- Enable mouse mode, can be useful for resizing splits for example!
|
|
|
|
vim.opt.mouse = 'a'
|
2023-10-22 10:13:07 +00:00
|
|
|
|
2024-02-26 19:46:46 +00:00
|
|
|
-- Don't show the mode, since it's already in status line
|
|
|
|
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-02-26 19:46:46 +00:00
|
|
|
vim.opt.clipboard = 'unnamedplus'
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- Enable break indent
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.breakindent = true
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- Save undo history
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.undofile = true
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- Case-insensitive searching UNLESS \C or capital in search
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.ignorecase = true
|
|
|
|
vim.opt.smartcase = true
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- Keep signcolumn on by default
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.signcolumn = 'yes'
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- Decrease update time
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.updatetime = 250
|
|
|
|
vim.opt.timeoutlen = 300
|
|
|
|
|
|
|
|
-- Configure how new splits should be opened
|
|
|
|
vim.opt.splitright = true
|
|
|
|
vim.opt.splitbelow = true
|
|
|
|
|
|
|
|
-- Sets how neovim will display certain whitespace in the editor.
|
2024-03-01 22:11:08 +00:00
|
|
|
-- See `:help 'list'`
|
|
|
|
-- and `:help 'listchars'`
|
2024-02-26 19:46:46 +00:00
|
|
|
vim.opt.list = true
|
|
|
|
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
|
|
|
|
|
|
|
-- Preview substitutions live, as you type!
|
|
|
|
vim.opt.inccommand = 'split'
|
2023-10-22 10:13:07 +00:00
|
|
|
|
2024-02-26 19:46:46 +00:00
|
|
|
-- Show which line your cursor is on
|
|
|
|
vim.opt.cursorline = true
|
2023-10-22 10:13:07 +00:00
|
|
|
|
2024-02-26 19:46:46 +00:00
|
|
|
-- Minimal number of screen lines to keep above and below the cursor.
|
|
|
|
vim.opt.scrolloff = 10
|
2023-10-22 10:13:07 +00:00
|
|
|
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|