mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 15:42:14 +02:00
huge rework in order to take full advantage of ansible roles
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
local opt = vim.opt
|
||||
|
||||
opt.autoindent = true
|
||||
opt.autoread = true
|
||||
opt.backspace = "indent,eol,start"
|
||||
opt.bufhidden = "hide"
|
||||
opt.clipboard:append("unnamedplus")
|
||||
opt.confirm = true
|
||||
opt.copyindent = true
|
||||
opt.emoji = true
|
||||
opt.encoding = "UTF-8"
|
||||
opt.expandtab = true
|
||||
opt.fileignorecase = true
|
||||
opt.hlsearch = true
|
||||
opt.ignorecase = true
|
||||
opt.incsearch = true
|
||||
opt.infercase = true
|
||||
opt.joinspaces = true
|
||||
opt.laststatus = 2
|
||||
opt.lazyredraw = false
|
||||
opt.backup = false
|
||||
opt.breakindent = false
|
||||
opt.compatible = false
|
||||
opt.errorbells = false
|
||||
opt.linebreak = false
|
||||
opt.swapfile = false
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.shiftround = true
|
||||
opt.shiftwidth = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.smartcase = true
|
||||
opt.smartindent = true
|
||||
opt.smarttab = true
|
||||
opt.softtabstop = 2
|
||||
opt.tabstop = 2
|
||||
vim.syntax = "on"
|
||||
opt.wrap = false
|
||||
opt.cursorline = true
|
||||
opt.termguicolors = true
|
||||
opt.signcolumn = "yes"
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
Reference in New Issue
Block a user