Compare commits

..

No commits in common. "98bc388c4acc64e587682003081c333dbdcdd396" and "022a8b98001c185baa336ad687601eeb6c805fd7" have entirely different histories.

View File

@ -271,7 +271,6 @@ require("lazy").setup({
repl_open_cmd = "horizontal bot 20 split" repl_open_cmd = "horizontal bot 20 split"
end, end,
}, },
"norcalli/nvim-colorizer.lua",
"ixru/nvim-markdown", "ixru/nvim-markdown",
"KeitaNakamura/tex-conceal.vim", "KeitaNakamura/tex-conceal.vim",
"christoomey/vim-tmux-navigator", "christoomey/vim-tmux-navigator",
@ -775,7 +774,7 @@ require("lazy").setup({
dependencies = "rktjmp/lush.nvim", dependencies = "rktjmp/lush.nvim",
config = function() config = function()
-- Load the colorscheme here -- Load the colorscheme here
vim.cmd.colorscheme("zenwritten") vim.cmd.colorscheme("zenbones")
end, end,
}, },
@ -841,8 +840,6 @@ require("lazy").setup({
}, },
"airblade/vim-gitgutter", "airblade/vim-gitgutter",
}) })
require("colorizer").setup()
--Set rustfmt command --Set rustfmt command
vim.g["rustfmt_command"] = "rustfmt +nightly" vim.g["rustfmt_command"] = "rustfmt +nightly"
--Disable semantic highlights --Disable semantic highlights
@ -893,12 +890,3 @@ vim.api.nvim_create_user_command("FormatEnable", function()
end, { end, {
desc = "Re-enable autoformat-on-save", desc = "Re-enable autoformat-on-save",
}) })
function file_exists(name)
local f = io.open(name, "r")
return f ~= nil and io.close(f)
end
if file_exists("/home/aselimov/.config/.stlight") then
vim.opt.background = "light"
end