merge
This commit is contained in:
parent
92c02a9120
commit
d39949468a
2 changed files with 6 additions and 2 deletions
|
@ -8,12 +8,15 @@ vim.o.relativenumber = false
|
||||||
-- Change the default font
|
-- Change the default font
|
||||||
-- Some of my machines have HDR displayed, meaning they need a smaller font size
|
-- Some of my machines have HDR displayed, meaning they need a smaller font size
|
||||||
if vim.fn.hostname() == "enoko" then
|
if vim.fn.hostname() == "enoko" then
|
||||||
vim.o.guifont = "JetBrains Mono:h12"
|
vim.o.guifont = "JetBrainsMono NF:h12"
|
||||||
else
|
else
|
||||||
vim.o.guifont = "JetBrains Mono:h14"
|
vim.o.guifont = "JetBrainsMono NF:h14"
|
||||||
end
|
end
|
||||||
|
|
||||||
if vim.g.neovide then
|
if vim.g.neovide then
|
||||||
-- Reduce neovide scroll animation length
|
-- Reduce neovide scroll animation length
|
||||||
vim.g.neovide_scroll_animation_length = 0.1
|
vim.g.neovide_scroll_animation_length = 0.1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Prepend mise shims to path
|
||||||
|
vim.env.PATH = vim.env.HOME .. ".local/share/mise/shims:" .. vim.env.PATH
|
||||||
|
|
1
dot_config/nvim/lua/plugins/mason.lua
Normal file
1
dot_config/nvim/lua/plugins/mason.lua
Normal file
|
@ -0,0 +1 @@
|
||||||
|
-- Adjusts mason.nvim path settings
|
Loading…
Add table
Reference in a new issue