Merge branch 'main' of github.com:warrenhood/dotfiles

This commit is contained in:
Warren Hood 2022-11-18 10:11:26 +02:00
commit ecdb771957
2 changed files with 9 additions and 1 deletions

View file

@ -91,3 +91,11 @@ smap <silent><expr> <C-k> luasnip#jumpable(1) ? '<Plug>luasnip-jump-next' : '<Ta
imap <silent><expr> <C-j> luasnip#jumpable(-1) ? '<Plug>luasnip-jump-prev' : '<S-Tab>'
smap <silent><expr> <C-j> luasnip#jumpable(-1) ? '<Plug>luasnip-jump-prev' : '<S-Tab>'
]]
-- GUI (Neovide
-- Toggle fullscreen in Neovide with Alt + Enter)
if vim.g.neovide then
map({"n", "i", "t"}, "<A-CR>", function ()
vim.g.neovide_fullscreen = not vim.g.neovide_fullscreen
end)
end

View file

@ -39,5 +39,5 @@ o.timeoutlen = 500
-- Gui font (Neovide)
if vim.g.neovide then
vim.o.guifont = "Mononoki NF"
vim.g.neovide_transparency = 0.85
vim.g.neovide_transparency = 0.95
end