mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -04:00
17 lines
292 B
Nix
17 lines
292 B
Nix
''
|
|
lua << EOF
|
|
vim.opt.tabstop = 2
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.expandtab = true
|
|
|
|
vim.o.guicursor = \'\'
|
|
vim.o.clipboard = "unnamedplus"
|
|
|
|
vim.o.foldmethod = "indent"
|
|
vim.o.foldlevelstart = 99
|
|
|
|
vim.cmd([[
|
|
au BufRead,BufNewFile *.purs set filetype=purescript
|
|
]])
|
|
EOF
|
|
''
|