diff options
author | Matthew Wozniak <me@woz.blue> | 2025-01-07 13:47:00 -0500 |
---|---|---|
committer | Matthew Wozniak <me@woz.blue> | 2025-01-07 13:47:00 -0500 |
commit | 444fad2662749ec6ab306fce7170bc0ea563f5c8 (patch) | |
tree | 8437f115a06ce5fb08345e6fb7323b64c8d103f0 | |
parent | a7f3bc8f5d8e7fbb3e6b631f9898de3e7d3bba7b (diff) | |
download | nvim-444fad2662749ec6ab306fce7170bc0ea563f5c8.tar.gz nvim-444fad2662749ec6ab306fce7170bc0ea563f5c8.zip |
monokai
-rw-r--r-- | after/plugin/cfg.vim | 2 | ||||
-rw-r--r-- | after/plugin/lsp.lua | 2 | ||||
-rw-r--r-- | init.lua | 8 |
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, @@ -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 }, }) |