34 lines
1.3 KiB
Lua
34 lines
1.3 KiB
Lua
-- Hint: use `:h <option>` to figure out the meaning if needed
|
|
vim.opt.clipboard = 'unnamedplus' -- use system clipboard
|
|
vim.opt.completeopt = { 'menu', 'menuone', 'noselect' }
|
|
vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim
|
|
|
|
-- Tab
|
|
vim.opt.tabstop = 4 -- number of visual spaces per TAB
|
|
vim.opt.softtabstop = 4 -- number of spacesin tab when editing
|
|
vim.opt.shiftwidth = 4 -- insert 4 spaces on a tab
|
|
vim.opt.expandtab = true -- tabs are spaces, mainly because of python
|
|
|
|
-- UI config
|
|
vim.opt.number = true -- show absolute number
|
|
vim.opt.cursorline = true -- highlight cursor line underneath the cursor horizontally
|
|
vim.opt.splitbelow = true -- open new vertical split bottom
|
|
vim.opt.splitright = true -- open new horizontal splits right
|
|
vim.opt.termguicolors = true -- enabl 24-bit RGB color in the TUI
|
|
vim.opt.showmode = false -- we are experienced, wo don't need the "-- INSERT --" mode hint
|
|
|
|
-- Searching
|
|
vim.opt.incsearch = true -- search as characters are entered
|
|
vim.opt.ignorecase = true -- ignore case in searches by default
|
|
vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered
|
|
|
|
-- disable netrw at the very start of your init.lua
|
|
vim.g.loaded_netrw = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
vim.cmd([[
|
|
if has("autocmd")
|
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
|
endif
|
|
]])
|