diff options
| author | Justine Smithies <justine@smithies.me.uk> | 2026-02-24 19:41:37 +0000 |
|---|---|---|
| committer | Justine Smithies <justine@smithies.me.uk> | 2026-02-24 19:41:37 +0000 |
| commit | da863a8344e960fa6a896ffe24bfdc71aa88e288 (patch) | |
| tree | 35ddd755ff46e05c89a541e997d4baebf261bf95 /.config/nvim/lua/config/options.lua | |
| parent | fc43df4ded3dfef70b21daad37893dad7b03c560 (diff) | |
Removed Neovim
Diffstat (limited to '.config/nvim/lua/config/options.lua')
| -rw-r--r-- | .config/nvim/lua/config/options.lua | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua deleted file mode 100644 index bd00264..0000000 --- a/.config/nvim/lua/config/options.lua +++ /dev/null @@ -1,51 +0,0 @@ --- disable netrw at the very start of your init.lua -------------------------- -vim.g.loaded_netrw = 1 -vim.g.loaded_netrwPlugin = 1 - -local opt = vim.opt - --- TAB/INDENT ---------------------------------------------------------------- -opt.tabstop = 2 -opt.shiftwidth = 2 -opt.softtabstop = 2 -opt.expandtab = true -opt.smartindent = true -opt.wrap = false - --- SEARCH -------------------------------------------------------------------- -opt.incsearch = true -opt.ignorecase = true -opt.smartcase = true -opt.hlsearch = false - --- APPEARANCE ---------------------------------------------------------------- -opt.number = true -opt.relativenumber = false -opt.termguicolors = true ---opt.colorcolumn = "100" -opt.signcolumn = "auto" -opt.cmdheight = 1 -opt.scrolloff = 10 -opt.completeopt = "menuone,noinsert,noselect" -opt.cursorline = true -- Highlight the active cursor line - --- MISC ---------------------------------------------------------------------- -opt.hidden = true -opt.errorbells = false -opt.swapfile = false -opt.backup = false -opt.undodir = vim.fn.expand("~/.config/nvim/undodir//") -opt.undofile = true -opt.backspace = "indent,eol,start" -opt.splitright = true -opt.splitbelow = true -opt.autochdir = false -opt.modifiable = true -opt.encoding = "UTF-8" -opt.guicursor = "n-v-c:block,i-ci-ve:block,r-cr:hor20,o:hor50,a:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor,sm:block-blinkwait175-blinkoff150-blinkon175" -opt.termguicolors = true - --- APPEND -------------------------------------------------------------------- -opt.mouse:append('a') -opt.iskeyword:append("-") -opt.clipboard:append("unnamedplus") |
