This commit is contained in:
c 2023-05-27 23:53:48 -05:00
parent 83e2feb4cb
commit 81bc1b2a12
4 changed files with 44 additions and 31 deletions

View File

@ -1,5 +1,5 @@
window: window:
opacity: 0.9 opacity: 0.85
font: font:
size: 12 size: 12

View File

@ -0,0 +1 @@
require('mini.surround').setup()

View File

@ -18,8 +18,8 @@ require("clint") -- loads lua/clint/init.lua
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python') require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
vim.opt.termguicolors = true vim.opt.termguicolors = true
vim.cmd.colorscheme 'kanagawa' vim.cmd.colorscheme 'ayu'
-- vim.cmd("highlight Normal guibg=none") vim.cmd("highlight Normal guibg=none")
-- vim.cmd("highlight NonText guibg=none") vim.cmd("highlight NonText guibg=none")
-- vim.cmd("highlight Normal ctermbg=none") vim.cmd("highlight Normal ctermbg=none")
-- vim.cmd("highlight NonText ctermbg=none") vim.cmd("highlight NonText ctermbg=none")

View File

@ -15,7 +15,8 @@ return {
{ 'saadparwaiz1/cmp_luasnip' }, { 'saadparwaiz1/cmp_luasnip' },
-- Linter -- Linter
{ 'jose-elias-alvarez/null-ls.nvim', {
'jose-elias-alvarez/null-ls.nvim',
config = function() config = function()
local nls = require("null-ls") local nls = require("null-ls")
nls.setup({ nls.setup({
@ -54,13 +55,19 @@ return {
-- Git -- Git
{ 'kdheepak/lazygit.nvim' }, { 'kdheepak/lazygit.nvim' },
{ 'lewis6991/gitsigns.nvim', config = { {
'lewis6991/gitsigns.nvim',
config = {
signs = { signs = {
add = { hl = 'GitSignsAdd', text = '+', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' }, add = { hl = 'GitSignsAdd', text = '+', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' },
change = { hl = 'GitSignsChange', text = '', numhl = 'GitSignsChangeNr', linehl = 'GitSignsChangeLn' }, change = { hl = 'GitSignsChange', text = '', numhl = 'GitSignsChangeNr',
delete = { hl = 'GitSignsDelete', text = '-', numhl = 'GitSignsDeleteNr', linehl = 'GitSignsDeleteLn' }, linehl = 'GitSignsChangeLn' },
topdelete = { hl = 'GitSignsDelete', text = '', numhl = 'GitSignsDeleteNr', linehl = 'GitSignsDeleteLn' }, delete = { hl = 'GitSignsDelete', text = '-', numhl = 'GitSignsDeleteNr',
changedelete = { hl = 'GitSignsChange', text = '~', numhl = 'GitSignsChangeNr', linehl = 'GitSignsChangeLn' }, linehl = 'GitSignsDeleteLn' },
topdelete = { hl = 'GitSignsDelete', text = '', numhl = 'GitSignsDeleteNr',
linehl = 'GitSignsDeleteLn' },
changedelete = { hl = 'GitSignsChange', text = '~', numhl = 'GitSignsChangeNr',
linehl = 'GitSignsChangeLn' },
untracked = { hl = 'GitSignsAdd', text = '', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' }, untracked = { hl = 'GitSignsAdd', text = '', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' },
}, },
current_line_blame = true, current_line_blame = true,
@ -74,8 +81,9 @@ return {
-- SuperTab -- SuperTab
{ 'ervandew/supertab' }, { 'ervandew/supertab' },
-- Vim-surround -- Surround
{ 'tpope/vim-surround' }, -- { 'tpope/vim-surround' },
{ 'echasnovski/mini.surround', version = '*' },
-- Slime, for tmux repl-ing -- Slime, for tmux repl-ing
{ 'jpalardy/vim-slime' }, { 'jpalardy/vim-slime' },
@ -129,14 +137,16 @@ return {
}, },
-- Object Explorer -- Object Explorer
{ 'simrat39/symbols-outline.nvim', {
'simrat39/symbols-outline.nvim',
config = { config = {
auto_preview = true, auto_preview = true,
} }
}, },
-- Terminal -- Terminal
{ 'akinsho/toggleterm.nvim', {
'akinsho/toggleterm.nvim',
version = "*", version = "*",
config = { config = {
open_mapping = [[<c-\>]], open_mapping = [[<c-\>]],
@ -162,7 +172,8 @@ return {
{ 'nvim-tree/nvim-web-devicons' }, { 'nvim-tree/nvim-web-devicons' },
-- Indent lines -- Indent lines
{ "lukas-reineke/indent-blankline.nvim", {
"lukas-reineke/indent-blankline.nvim",
config = config =
{ {
show_end_of_line = true, show_end_of_line = true,
@ -173,7 +184,8 @@ return {
}, },
-- Cursor line -- Cursor line
{ 'yamatsum/nvim-cursorline', {
'yamatsum/nvim-cursorline',
config = config =
{ {
cursorline = { cursorline = {