commands for setting the font

This commit is contained in:
Oliver Hartmann 2023-01-26 11:48:34 +01:00
parent 9e8672038e
commit c5e740a70b

View File

@ -44,3 +44,6 @@ vim.keymap.set({'n', 'x'}, '<leader>y', '"+y', { desc='Copy from system clipboar
vim.keymap.set({'n', 'x'}, '<leader>Y', '"+yg_', { desc='Copy from system clipboard'})
vim.keymap.set({'n', 'x'}, '<leader>p', '"+p', { desc='Paste from system clipboard'})
vim.keymap.set({'n', 'x'}, '<leader>P', '"+P', { desc='Paste from system clipboard'})
vim.api.nvim_create_user_command('WinFont', 'set guifont=JetBrainsMonoNL\\ NF:h9', {})
vim.api.nvim_create_user_command('LinuxFont', 'set guifont=JetBrainsMono\\ Nerd\\ Font\\ Mono:h7', {})