From b315b75be940b88a8ca472972405117ae1a66888 Mon Sep 17 00:00:00 2001 From: Gaiety Date: Fri, 3 Apr 2026 19:17:52 -0600 Subject: [PATCH] neovim rose pine theme, fixed fonts again ha --- config.ghostty | 16 ++++++---------- nvim/init.lua | 2 ++ nvim/lua/theme.lua | 16 ++++++++++++++++ nvim/nvim-pack-lock.json | 8 ++++++++ 4 files changed, 32 insertions(+), 10 deletions(-) create mode 100644 nvim/lua/theme.lua create mode 100644 nvim/nvim-pack-lock.json diff --git a/config.ghostty b/config.ghostty index c362623..13116a9 100644 --- a/config.ghostty +++ b/config.ghostty @@ -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 diff --git a/nvim/init.lua b/nvim/init.lua index a90cd96..9af11ea 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -1,3 +1,5 @@ require('options') require('keys') require('highlighting') + +require('theme') diff --git a/nvim/lua/theme.lua b/nvim/lua/theme.lua new file mode 100644 index 0000000..a135966 --- /dev/null +++ b/nvim/lua/theme.lua @@ -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') diff --git a/nvim/nvim-pack-lock.json b/nvim/nvim-pack-lock.json new file mode 100644 index 0000000..8f5e047 --- /dev/null +++ b/nvim/nvim-pack-lock.json @@ -0,0 +1,8 @@ +{ + "plugins": { + "neovim": { + "rev": "cf2a288696b03d0934da713d66c6d71557b5c997", + "src": "https://github.com/rose-pine/neovim" + } + } +}