Refactoring
- Added macos
This commit is contained in:
parent
03a7616e8c
commit
2c1ccaffd1
47 changed files with 76 additions and 33 deletions
49
global/.config/nvim/lua/core/options.lua
Normal file
49
global/.config/nvim/lua/core/options.lua
Normal file
|
@ -0,0 +1,49 @@
|
|||
local opt = vim.opt
|
||||
|
||||
-- Tab / Indentation
|
||||
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 = "yes"
|
||||
-- opt.signcolumn = "number"
|
||||
opt.cmdheight = 1
|
||||
opt.scrolloff = 10
|
||||
opt.completeopt = "menuone,noinsert,noselect"
|
||||
-- opt.guicursor = ""
|
||||
opt.showmode = false
|
||||
-- opt.tabline = '%!v:lua.require("utils").tabline()'
|
||||
|
||||
-- Behaviour
|
||||
opt.hidden = true
|
||||
opt.errorbells = false
|
||||
opt.swapfile = false
|
||||
opt.backup = false
|
||||
opt.undodir = vim.fn.expand("~/.vim/undodir")
|
||||
opt.undofile = true
|
||||
opt.backspace = "indent,eol,start"
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
opt.autochdir = false
|
||||
opt.iskeyword:append("-")
|
||||
opt.mouse:append("a")
|
||||
opt.clipboard:append("unnamedplus")
|
||||
opt.modifiable = true
|
||||
-- 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.encoding = "UTF-8"
|
||||
opt.cursorline = false
|
Loading…
Add table
Add a link
Reference in a new issue