update term + vim colors, hyprland config, remove alacritty/kitty
This commit is contained in:
@@ -20,15 +20,12 @@ gtk-wide-tabs = true
|
||||
#macos-non-native-fullscreen = true
|
||||
|
||||
# Font
|
||||
font-size = 14
|
||||
font-family = JetBrainsMono NF
|
||||
font-size = 16
|
||||
font-family = Kelmscott Mono
|
||||
|
||||
# Theme
|
||||
# theme = Grape
|
||||
# theme = Bright Lights
|
||||
theme = tokyonight
|
||||
# theme = Purple Rain
|
||||
# theme = Mariana
|
||||
theme = Obsidian
|
||||
# theme = Relaxed
|
||||
|
||||
# Cursor And Mouse
|
||||
cursor-style = block
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
local default_color = "sonokai"
|
||||
|
||||
function ColorMyTerminal(color)
|
||||
color = color or "tokyonight-night"
|
||||
color = color or default_color
|
||||
vim.cmd.colorscheme(color)
|
||||
|
||||
vim.cmd("hi ColorColumn ctermbg=0 guibg=purple")
|
||||
@@ -7,4 +9,4 @@ function ColorMyTerminal(color)
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", {bg = "none"})
|
||||
end
|
||||
|
||||
vim.cmd.colorscheme("tokyonight-night")
|
||||
vim.cmd.colorscheme(default_color)
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
return require('packer').startup(function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'folke/tokyonight.nvim', as = 'tokyonight' })
|
||||
use({ 'karoliskoncevicius/sacredforest-vim', as = 'sacredforest' })
|
||||
use({ 'EdenEast/nightfox.nvim', as = 'nightfox' })
|
||||
use({ 'rebelot/kanagawa.nvim', as = 'kanagawa'})
|
||||
use({ 'sainnhe/sonokai', as = 'sonokai'})
|
||||
use({ 'p00f/alabaster.nvim', as = 'alabaster'})
|
||||
|
||||
use 'nvim-telescope/telescope.nvim'
|
||||
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
|
||||
|
||||
Reference in New Issue
Block a user