1
0
Fork 0

Fix trolling format file and mysterious themes

This commit is contained in:
CRy386i 2025-12-20 03:46:36 +01:00
parent 9b513b789c
commit 117f2a86a6
2 changed files with 6 additions and 11 deletions

View file

@ -27,7 +27,8 @@ vim.cmd [[autocmd BufEnter * set fo-=c fo-=r fo-=o]]
opt.encoding = "utf-8" opt.encoding = "utf-8"
opt.fileencoding = "utf-8" opt.fileencoding = "utf-8"
opt.ff = "unix" opt.fileformats = "unix"
opt.fileformat = "unix"
-- Also work under ru -- Also work under ru
opt.langmap = "ФИСВУАПРШОЛДЬТЩЗЙКЫЕГМЦЧНЯ;ABCDEFGHIJKLMNOPQRSTUVWXYZ,фисвуапршолдьтщзйкыегмцчня;abcdefghijklmnopqrstuvwxyz" opt.langmap = "ФИСВУАПРШОЛДЬТЩЗЙКЫЕГМЦЧНЯ;ABCDEFGHIJKLMNOPQRSTUVWXYZ,фисвуапршолдьтщзйкыегмцчня;abcdefghijklmnopqrstuvwxyz"

View file

@ -15,12 +15,6 @@ vim.opt.rtp:prepend(lazypath)
require('lazy').setup({ require('lazy').setup({
{ 'tpope/vim-commentary', }, { 'tpope/vim-commentary', },
{ 'tpope/vim-fugitive', }, { 'tpope/vim-fugitive', },
{ 'sheerun/vim-polyglot',
init = function()
-- vim-polyglot confusingly registers *.comp both for perl and for glsl
vim.api.nvim_set_var('polyglot_disabled', {'perl'})
end,
},
{ {
'morhetz/gruvbox', 'morhetz/gruvbox',
lazy = false, lazy = false,
@ -32,10 +26,10 @@ require('lazy').setup({
vim.cmd([[colorscheme gruvbox]]) vim.cmd([[colorscheme gruvbox]])
end, end,
}, },
{ -- {
"folke/tokyonight.nvim", -- "folke/tokyonight.nvim",
lazy = true -- lazy = true
}, -- },
{ 'nvim-telescope/telescope-fzf-native.nvim', { 'nvim-telescope/telescope-fzf-native.nvim',
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
}, },