style changes to font and colourscheme.

This commit is contained in:
Gabe Venberg 2023-11-02 19:00:26 -05:00
parent 11afcdf46d
commit 613a210bd6
3 changed files with 39 additions and 7 deletions

View file

@ -20,7 +20,8 @@
#: many weight variants like Book, Medium, Thick, etc. For example::
# to get availible fonts, run kitty +list-fonts
font_family Cascadia Code
font_family Fira Code
# font_family Monocraft
#: bold_font Operator Mono Medium
#: italic_font Operator Mono Book Italic
#: bold_italic_font Operator Mono Medium Italic

View file

@ -72,7 +72,11 @@ opt.foldenable = true
opt.foldignore = ''
--sets colorscheme. to get a list of avalible options, do colorscheme <Space> <C-d>
vim.cmd 'colorscheme moonfly'
vim.opt.background="dark"
-- vim.cmd 'colorscheme moonfly'
-- vim.cmd 'colorscheme nightfly'
-- vim.cmd 'colorscheme nordic'
vim.cmd 'colorscheme gruvbox'
--function for venn.nvim
-- venn.nvim: enable or disable keymappings

View file

@ -86,9 +86,6 @@ require('lazy').setup({
},
{
'simrat39/rust-tools.nvim',
-- config = function()
-- require('rust-tools-setup')
-- end
},
{
'hrsh7th/nvim-cmp',
@ -301,7 +298,8 @@ require('lazy').setup({
'lewis6991/gitsigns.nvim',
config = true,
},
{'chentoast/marks.nvim',
{
'chentoast/marks.nvim',
config = true
},
'sitiom/nvim-numbertoggle',
@ -331,5 +329,34 @@ require('lazy').setup({
'bluz71/vim-nightfly-guicolors',
lazy = true,
},
{
'AlexvZyl/nordic.nvim',
lazy = true,
},
{
'savq/melange-nvim',
lazy = true,
},
{
"folke/tokyonight.nvim",
lazy = true,
},
{
'nyoom-engineering/oxocarbon.nvim',
lazy = true,
},
{
"catppuccin/nvim",
name = "catppuccin",
lazy = true,
},
{
'rebelot/kanagawa.nvim',
lazy = true,
},
{
'ellisonleao/gruvbox.nvim',
lazy = true,
}
})