Adding a wallpaper

This commit is contained in:
Zoe Roux
2022-04-01 21:29:53 +02:00
parent 4e7bfd6866
commit 4c39fa90ec
5 changed files with 7 additions and 9 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 981 KiB

+3 -1
View File
@@ -9,5 +9,7 @@ push()
alias "s"="git status"
alias "gp"="git pull"
alias "gP"="git push"
alias "gl"="git log"
alias "gf"="git fetch"
alias "gd"="git diff"
alias "gd"="git diff"
+1 -1
View File
@@ -44,7 +44,7 @@ return packer.startup(function(use)
use "tpope/vim-surround"
use "tpope/vim-unimpaired"
use{ "tpope/vim-unimpaired", config = function() vim.g.nremap = { ["[u"] = "", ["]u"] = "" } end }
use "tpope/vim-speeddating"
use "tpope/vim-repeat"
use "tpope/vim-sleuth"
+2 -6
View File
@@ -5,12 +5,8 @@ vim.g["ultest_fail_sign"] = ""
vim.g["ultest_running_sign"] = ""
vim.g["ultest_not_run_sign"] = ""
vim.cmd [[
augroup test_list
autocmd!
autocmd FileType UltestSummary setl nolist
augroup end
]]
vim.cmd [[ autocmd FileType UltestSummary setl nolist ]]
vim.cmd [[ autocmd FileType UltestSummary echo "toto" ]]
local wk = require("which-key")
wk.register({
@@ -10,7 +10,7 @@ end
vim.cmd [[
augroup virtcolumn
autocmd!
autocmd FileType * if index(["netrw", "NvimTree", "Trouble", "toggleterm", "UltestSummary"], &ft) == -1 | lua require("windows.colorcolumn").setup()
autocmd FileType * if index(["netrw", "NvimTree", "Trouble", "toggleterm", "packer", "UltestSummary"], &ft) == -1 | lua require("windows.colorcolumn").setup()
augroup end
]]