1
0
Fork 0

nvim: different font size for neovide; kitty: some more configuration; tmux: get back hotkeys

This commit is contained in:
Von Random 2023-01-21 03:55:49 +02:00
parent eb3a6c75b2
commit 3df18892ec
3 changed files with 30 additions and 20 deletions

View file

@ -1,3 +1,6 @@
local fsize = '11'
if vim.loop.os_uname().sysname == 'Darwin' then fsize = '14' end
vim.o.modeline = false
vim.o.foldmethod = 'marker'
vim.o.cursorline = true
@ -28,4 +31,4 @@ vim.o.title = true
vim.o.titlestring = '[%{hostname()}] %t - neovim'
vim.o.statusline = '[%F] %R%H%W%M %=[%{&fenc}/%{&ff}] %y [%4l/%L:%3v]'
vim.o.guifont = 'JetBrains Mono:h12'
vim.o.guifont = 'JetBrains Mono:h' .. fsize