neovim rose pine theme, fixed fonts again ha
This commit is contained in:
parent
26e7ef412d
commit
b315b75be9
4 changed files with 32 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
require('options')
|
||||
require('keys')
|
||||
require('highlighting')
|
||||
|
||||
require('theme')
|
||||
|
|
|
|||
16
nvim/lua/theme.lua
Normal file
16
nvim/lua/theme.lua
Normal 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
8
nvim/nvim-pack-lock.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"plugins": {
|
||||
"neovim": {
|
||||
"rev": "cf2a288696b03d0934da713d66c6d71557b5c997",
|
||||
"src": "https://github.com/rose-pine/neovim"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue