nvim: Tweaks

This commit is contained in:
2024-06-02 13:14:29 +02:00
parent a18a03ba0e
commit ff7ca4e4ba
3 changed files with 12 additions and 7 deletions

View File

@ -82,7 +82,7 @@ return require('packer').startup(function(use)
use "nvim-lua/plenary.nvim"
use {
'folke/todo-comments.nvim',
event = 'VimEnter',
event = 'VimEnter',
requires = { 'nvim-lua/plenary.nvim' }
}
@ -91,7 +91,7 @@ return require('packer').startup(function(use)
use 'williamboman/mason-lspconfig.nvim'
use 'neovim/nvim-lspconfig'
use 'simrat39/rust-tools.nvim'
use 'WhoIsSethDaniel/lualine-lsp-progress.nvim'
--use 'WhoIsSethDaniel/lualine-lsp-progress.nvim'
-- nushell support
--use { 'LhKipp/nvim-nu', run = function() vim.fn[':TSInstall nu'] end} }
@ -106,9 +106,9 @@ return require('packer').startup(function(use)
-- Useful completion sources:
use 'hrsh7th/cmp-nvim-lua'
use 'hrsh7th/cmp-nvim-lsp-signature-help'
use 'hrsh7th/cmp-vsnip'
use 'hrsh7th/cmp-path'
use 'hrsh7th/cmp-buffer'
use 'hrsh7th/cmp-vsnip'
use 'hrsh7th/cmp-path'
use 'hrsh7th/cmp-buffer'
use 'hrsh7th/vim-vsnip'
-- telescope

View File

@ -25,6 +25,10 @@ require("gruvbox").setup({
transparent_mode = false,
})
vim.o.background = "dark" -- or "light" for light mode
{% if light %}
vim.o.background = "light"
{% else %}
vim.o.background = "dark"
{% end %}
vim.cmd([[colorscheme gruvbox]])