fix chat gpt and change to doom-one
This commit is contained in:
@@ -37,7 +37,7 @@ require('packer').startup(function(use)
|
||||
},
|
||||
suggestion = {
|
||||
enabled = false,
|
||||
auto_trigger = true,
|
||||
auto_trigger = false,
|
||||
debounce = 75,
|
||||
keymap = {
|
||||
accept = "<C-l>",
|
||||
@@ -180,19 +180,19 @@ require('packer').startup(function(use)
|
||||
use 'williamboman/nvim-lsp-installer'
|
||||
|
||||
use { 'Mofiqul/dracula.nvim' }
|
||||
use {
|
||||
use({
|
||||
'NTBBloodbath/doom-one.nvim',
|
||||
setup = function()
|
||||
-- Add color to cursor
|
||||
vim.g.doom_one_cursor_coloring = false
|
||||
-- Set :terminal colors
|
||||
vim.g.doom_one_terminal_colors = false
|
||||
vim.g.doom_one_terminal_colors = true
|
||||
-- Enable italic comments
|
||||
vim.g.doom_one_italic_comments = true
|
||||
vim.g.doom_one_italic_comments = false
|
||||
-- Enable TS support
|
||||
vim.g.doom_one_enable_treesitter = true
|
||||
-- Color whole diagnostic text or only underline
|
||||
vim.g.doom_one_diagnostics_text_color = true
|
||||
vim.g.doom_one_diagnostics_text_color = false
|
||||
-- Enable transparent background
|
||||
vim.g.doom_one_transparent_background = false
|
||||
|
||||
@@ -201,24 +201,31 @@ require('packer').startup(function(use)
|
||||
vim.g.doom_one_pumblend_transparency = 20
|
||||
|
||||
-- Plugins integration
|
||||
vim.g.doom_one_plugin_neorg = false
|
||||
vim.g.doom_one_plugin_neorg = true
|
||||
vim.g.doom_one_plugin_barbar = false
|
||||
vim.g.doom_one_plugin_telescope = true
|
||||
vim.g.doom_one_plugin_telescope = false
|
||||
vim.g.doom_one_plugin_neogit = true
|
||||
vim.g.doom_one_plugin_nvim_tree = true
|
||||
vim.g.doom_one_plugin_dashboard = true
|
||||
vim.g.doom_one_plugin_startify = false
|
||||
vim.g.doom_one_plugin_startify = true
|
||||
vim.g.doom_one_plugin_whichkey = true
|
||||
vim.g.doom_one_plugin_indent_blankline = true
|
||||
vim.g.doom_one_plugin_vim_illuminate = false
|
||||
vim.g.doom_one_plugin_lspsaga = true
|
||||
vim.g.doom_one_plugin_vim_illuminate = true
|
||||
vim.g.doom_one_plugin_lspsaga = false
|
||||
end,
|
||||
config = function()
|
||||
vim.cmd("colorscheme doom-one")
|
||||
vim.cmd(
|
||||
"highlight Pmenu ctermfg=white ctermbg=black gui=NONE guifg=white guibg=#282C34")
|
||||
vim.cmd("highlight PmenuSel guifg=purple guibg=red")
|
||||
end
|
||||
}
|
||||
})
|
||||
use { 'olimorris/onedarkpro.nvim' }
|
||||
use { 'projekt0n/github-nvim-theme' }
|
||||
|
||||
use({
|
||||
"jackMort/ChatGPT.nvim",
|
||||
commit = "24bcca7",
|
||||
requires = {
|
||||
"MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim",
|
||||
"nvim-telescope/telescope.nvim"
|
||||
|
||||
Reference in New Issue
Block a user