67 lines
2.2 KiB
Lua
67 lines
2.2 KiB
Lua
-- /lua/options.lua
|
|
-- This file is where i set all of the options and settings for nvim
|
|
|
|
|
|
-- [[setup]]
|
|
vim.g.mapleader = ' '
|
|
vim.g.maplocalleader = ' '
|
|
vim.g.have_nerd_font = true
|
|
|
|
vim.g.loaded_netrw = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
-- [[Setting options]]
|
|
vim.o.spell = false -- turn on spellcheck
|
|
vim.o.spelllang = 'en_us' -- set English as spellcheck language
|
|
vim.opt.spellcapcheck = ""
|
|
vim.o.number = true -- Make line numbers default
|
|
vim.o.relativenumber = true
|
|
vim.o.showmode = false
|
|
-- Sync clipboard between OS and Neovim.
|
|
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
|
-- Remove this option if you want your OS clipboard to remain independent.
|
|
-- See `:help 'clipboard'`
|
|
vim.schedule(function()
|
|
vim.o.clipboard = 'unnamedplus'
|
|
end)
|
|
-- Enable break indent
|
|
-- Save undo history
|
|
vim.o.undofile = true
|
|
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
|
|
vim.o.ignorecase = true
|
|
vim.o.smartcase = true
|
|
-- Keep signcolumn on by default
|
|
vim.o.signcolumn = 'yes'
|
|
-- Decrease update time
|
|
vim.o.updatetime = 250
|
|
-- Decrease mapped sequence wait time
|
|
vim.o.timeoutlen = 300
|
|
-- Configure how new splits should be opened
|
|
vim.o.splitright = true
|
|
vim.o.splitbelow = true
|
|
vim.o.list = true
|
|
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
|
-- Preview substitutions live, as you type!
|
|
vim.o.inccommand = 'split'
|
|
-- Show which line your cursor is on
|
|
vim.o.cursorline = true
|
|
-- Minimal number of screen lines to keep above and below the cursor.
|
|
vim.o.scrolloff = 25
|
|
-- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`),
|
|
-- instead raise a dialog asking if you wish to save the current file(s)
|
|
-- See `:help 'confirm'`
|
|
vim.o.confirm = true
|
|
|
|
-- vim.opt.expandtab = false -- Do NOT turn tabs into spaces
|
|
-- vim.opt.tabstop = 4 -- A literal \t character looks 4 columns wide
|
|
-- vim.opt.shiftwidth = 4 -- Number of spaces for automated indentation (<< or >>)
|
|
-- vim.opt.softtabstop = 0 -- Let the backspace key delete a full hard tab
|
|
|
|
vim.opt.termguicolors = true -- required for colorizer
|
|
|
|
--set background color on entering and leaving nvim
|
|
require('autocommands')
|
|
vim.env.PATH = vim.fn.stdpath("data") .. "/mason/bin" .. ":" .. vim.env.PATH
|
|
|
|
|