nvim/lua/settings/system.lua

30 lines
912 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.

-- Использовать системный буфер обмена
vim.opt.clipboard = 'unnamedplus'
-- Автодополнение (встроенное в Neovim)
--vim.opt.completeopt = 'menuone,noselect'
-- Не автокомментировать новые линии при переходе на новую строку
vim.cmd('autocmd BufEnter * set fo-=c fo-=r fo-=o')
-- Нумерация строк
vim.opt.number = true
-- Интервал обновлений отрисовки
vim.opt.updatetime = 100
-- Всегда отображать signcolumn (?)
vim.opt.signcolumn = 'yes'
-- 24-битные цвета
vim.opt.termguicolors = true
-- Отключение переноса строк
vim.opt_local.wrap = false
-- Отображение колонки курсора
vim.opt_local.cursorcolumn = true
-- Выбор цветовой темы
vim.cmd.colorscheme('default')