This commit is contained in:
Ali Can Zeybek
2022-12-19 19:48:38 +03:00
parent d1862f0d15
commit d1cc10b058
4 changed files with 65 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
vim.cmd [[
try
colorscheme oxocarbon
colorscheme gruvbox-material
catch /^Vim\%((\a\+)\)\=:E185/
colorscheme default
set background=dark

View File

@@ -5,7 +5,7 @@ end
local lspconfig = require("lspconfig")
local servers = { "jsonls", "sumneko_lua" , "pyright"}
local servers = { "jsonls", "sumneko_lua" , "pyright", "gopls", "ccls"}
lsp_installer.setup({
ensure_installed = servers,

View File

@@ -77,6 +77,8 @@ return packer.startup(function(use)
-- lualine
use "nvim-lualine/lualine.nvim"
--markdown
use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" }, })
if PACKER_BOOTSTRAP then
require("packer").sync()
end