nvim: Tweaks
This commit is contained in:
@ -34,7 +34,8 @@ require("auto-save").setup({
|
||||
enabled = false
|
||||
})
|
||||
|
||||
require("todo-comments").setup()
|
||||
-- FIXME
|
||||
--require("todo-comments").setup()
|
||||
|
||||
|
||||
rust_tools.setup({
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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]])
|
||||
Reference in New Issue
Block a user