mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-13 05:22:08 +01:00
26 lines
449 B
Lua
26 lines
449 B
Lua
local cmd = vim.cmd
|
|
|
|
local o = vim.o
|
|
local wo = vim.wo
|
|
local g = vim.g
|
|
|
|
cmd "syntax on"
|
|
o.tabstop = 4
|
|
o.shiftwidth = 4
|
|
o.expandtab = true
|
|
wo.number = true
|
|
o.guifont = "Iosevka:h10"
|
|
o.mouse = "a"
|
|
o.termguicolors = true
|
|
wo.cursorline = true
|
|
wo.cursorcolumn = true
|
|
|
|
g.airline_powerline_fonts = 1
|
|
g.neoterm_default_mod = "tab"
|
|
g.neovide_iso_layout = true
|
|
|
|
cmd "colorscheme dracula"
|
|
|
|
cmd "autocmd StdinReadPre * let s:std_in=1"
|
|
|
|
cmd "filetype plugin on"
|