last commit before sync fork

This commit is contained in:
geremia 2024-02-01 18:54:21 +01:00
parent 9058b106c5
commit 65fc530c1c
1 changed files with 32 additions and 4 deletions

View File

@ -147,8 +147,8 @@ require('lazy').setup({
'ellisonleao/gruvbox.nvim', 'ellisonleao/gruvbox.nvim',
priority = 1000, priority = 1000,
config = function() config = function()
vim.o.background = "dark" -- or "light" for light mode -- vim.o.background = "dark" -- or "light" for light mode
vim.cmd([[colorscheme gruvbox]]) -- vim.cmd([[colorscheme gruvbox]])
end, end,
}, },
{ {
@ -178,6 +178,18 @@ require('lazy').setup({
}, },
}, },
}, },
{
'projekt0n/github-nvim-theme',
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('github-theme').setup({
-- ...
})
vim.cmd('colorscheme github_dark_dimmed')
end,
},
-- Add indentation guides even on blank lines -- Add indentation guides even on blank lines
--[[ V2 --[[ V2
@ -193,6 +205,7 @@ require('lazy').setup({
--]] --]]
-- V3 -- V3
--[[
{ {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
main = "ibl", main = "ibl",
@ -202,7 +215,7 @@ require('lazy').setup({
}, },
} }
}, },
--]]
-- "gc" to comment visual regions/lines -- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} }, { 'numToStr/Comment.nvim', opts = {} },
@ -367,7 +380,22 @@ vim.keymap.set('n', '<leader>sr', require('telescope.builtin').resume, { desc =
-- 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 = {
'c',
'cpp',
'go',
'lua',
'python',
'rust',
'tsx',
'javascript',
'typescript',
'vimdoc',
'vim',
'markdown',
'markdown_inline',
},
-- 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,