disable onedark colorscheme

This commit is contained in:
Vinit Neogi 2023-09-02 23:32:24 +05:30
parent 31adb712cf
commit 6032c4affc
1 changed files with 11 additions and 11 deletions

View File

@ -131,14 +131,14 @@ require('lazy').setup({
}, },
}, },
{ -- {
-- Theme inspired by Atom -- -- Theme inspired by Atom
'navarasu/onedark.nvim', -- 'navarasu/onedark.nvim',
priority = 1000, -- priority = 1000,
config = function() -- config = function()
-- vim.cmd.colorscheme 'onedark' -- vim.cmd.colorscheme 'onedark'
end, -- end,
}, -- },
{ {
-- Set lualine as statusline -- Set lualine as statusline
@ -147,7 +147,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', -- theme = 'onedark',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },
@ -201,7 +201,7 @@ require('lazy').setup({
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart -- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository. -- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them. -- Uncomment any of the lines below to enable them.
require 'kickstart.plugins.autoformat', -- require 'kickstart.plugins.autoformat',
require 'kickstart.plugins.debug', require 'kickstart.plugins.debug',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
@ -313,7 +313,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de
-- See `:help nvim-treesitter` -- See `:help nvim-treesitter`
require('nvim-treesitter.configs').setup { require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter -- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim' }, ensure_installed = { 'lua', 'python', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false, auto_install = false,