1
1
Fork 0

neovim rose pine theme, fixed fonts again ha

This commit is contained in:
Gaiety 2026-04-03 19:17:52 -06:00
parent 26e7ef412d
commit b315b75be9
4 changed files with 32 additions and 10 deletions

View file

@ -1,26 +1,22 @@
font-synthetic-style = false
# font-synthetic-style = false
font-family = MonaspiceXe NFM
font-style = Light
# font-style = Light
font-family-bold = MonaspiceNe NFM
font-style-bold = Medium
font-family-italic = MonaspiceRa NFM
font-family-italic = MonaspiceRn NFM
font-style-italic = Light
font-family-bold-italic = MonaspiceRa NFM
font-family-bold-italic = MonaspiceRn NFM
font-style-bold-italic = Medium
font-feature = "ss01"
font-feature = calt, liga, dlig, ss01, ss02, ss03, ss04, ss05, ss06, ss07, ss08, ss09, ss10, ital
# ss02: <= and >=
font-feature = "ss02"
# ss03: -> and ~>
font-feature = "ss03"
# ss04: <> and </>
font-feature = "ss04"
# liga: //, ..., ||
font-feature = "liga"
font-size = 20
@ -36,4 +32,4 @@ window-inherit-working-directory = true
window-inherit-font-size = true
window-theme = system
link-url = true
# link-url = true

View file

@ -1,3 +1,5 @@
require('options')
require('keys')
require('highlighting')
require('theme')

16
nvim/lua/theme.lua Normal file
View file

@ -0,0 +1,16 @@
vim.pack.add({
'https://github.com/rose-pine/neovim'
})
-- hi =>
require('rose-pine').setup({
highlight_groups = {
Comment = { italic = true }
},
styles = {
italic = true,
transparency = true,
},
})
vim.cmd.colorscheme('rose-pine-moon')

8
nvim/nvim-pack-lock.json Normal file
View file

@ -0,0 +1,8 @@
{
"plugins": {
"neovim": {
"rev": "cf2a288696b03d0934da713d66c6d71557b5c997",
"src": "https://github.com/rose-pine/neovim"
}
}
}