Files
lazyfox/lua/config/options.lua
2025-09-30 10:47:01 +03:00

18 lines
562 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
O = vim.opt
O.swapfile = false
O.fileformat = "unix"
O.wrap = true
-- Не автокомментировать новые линии при переходе на новую строку
vim.cmd([[autocmd BufEnter * set fo-=c fo-=r fo-=o]])
-- vim.diagnostic.config({
-- virtual_lines = true,
-- virtual_text = false,
-- float = true,
-- })