summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--after/plugin/cfg.vim2
-rw-r--r--after/plugin/lsp.lua2
-rw-r--r--init.lua8
3 files changed, 8 insertions, 4 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim
index 9d95463..70c95cc 100644
--- a/after/plugin/cfg.vim
+++ b/after/plugin/cfg.vim
@@ -3,4 +3,4 @@ set autoindent
set sw=4 ts=4 noet tw=80 cc=80
set spr sb pb=12 winbl=12 nowrap ruler autoread
set gfn=Hack:h10 noshowmode
-colorscheme seoul256
+color monokai_pro
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua
index 6eb1ebb..3f790d7 100644
--- a/after/plugin/lsp.lua
+++ b/after/plugin/lsp.lua
@@ -69,7 +69,7 @@ end
local caps = vim.lsp.protocol.make_client_capabilities()
caps = cmp_lsp.default_capabilities(caps)
-local servers = {'clangd', 'rust_analyzer', 'zls', 'texlab'}
+local servers = {'clangd', 'rust_analyzer', 'zls', 'texlab', 'biome'}
for _, lsp in pairs(servers) do
lspconfig[lsp].setup {
capabilities = caps,
diff --git a/init.lua b/init.lua
index 0e85cb8..b5ead91 100644
--- a/init.lua
+++ b/init.lua
@@ -30,7 +30,7 @@ require("lazy").setup({
opts = {},
},
{ "m4xshen/autoclose.nvim", opts = {} },
- { "junegunn/seoul256.vim" },
+ { "phanviet/vim-monokai-pro" },
{ "neovim/nvim-lspconfig" },
{ 'hrsh7th/cmp-nvim-lsp' },
{ 'hrsh7th/cmp-buffer' },
@@ -40,6 +40,10 @@ require("lazy").setup({
{ 'L3MON4D3/LuaSnip' },
{ 'lervag/vimtex', lazy = false },
{
+ 'preservim/vim-markdown',
+ dependencies = { 'godlygeek/tabular' },
+ },
+ {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {},
@@ -47,7 +51,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
- install = { colorscheme = { "seoul256" } },
+ install = { colorscheme = { "monokai" } },
-- automatically check for plugin updates
checker = { enabled = true, notify = false },
})