Compare commits
2 Commits
022a8b9800
...
98bc388c4a
Author | SHA1 | Date | |
---|---|---|---|
98bc388c4a | |||
41d85c9f70 |
14
init.lua
14
init.lua
@ -271,6 +271,7 @@ require("lazy").setup({
|
||||
repl_open_cmd = "horizontal bot 20 split"
|
||||
end,
|
||||
},
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
"ixru/nvim-markdown",
|
||||
"KeitaNakamura/tex-conceal.vim",
|
||||
"christoomey/vim-tmux-navigator",
|
||||
@ -774,7 +775,7 @@ require("lazy").setup({
|
||||
dependencies = "rktjmp/lush.nvim",
|
||||
config = function()
|
||||
-- Load the colorscheme here
|
||||
vim.cmd.colorscheme("zenbones")
|
||||
vim.cmd.colorscheme("zenwritten")
|
||||
end,
|
||||
},
|
||||
|
||||
@ -840,6 +841,8 @@ require("lazy").setup({
|
||||
},
|
||||
"airblade/vim-gitgutter",
|
||||
})
|
||||
|
||||
require("colorizer").setup()
|
||||
--Set rustfmt command
|
||||
vim.g["rustfmt_command"] = "rustfmt +nightly"
|
||||
--Disable semantic highlights
|
||||
@ -890,3 +893,12 @@ vim.api.nvim_create_user_command("FormatEnable", function()
|
||||
end, {
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user