Add tokyo_night and small improvements in vim files

master
Ian Mancini 3 years ago
parent 7ecd402ea2
commit ebccf92d98

@ -3,8 +3,8 @@ extends = "base"
[custom.polybar] [custom.polybar]
modules_left = "i3" modules_left = "i3"
modules_center = "time date" modules_center = "time "
modules_right = "cpu memory xkeyboard" modules_right = "cpu memory xkeyboard date"
text_offset = "2" text_offset = "2"
icon_font_scale ="8" icon_font_scale ="8"
antialias = "true" antialias = "true"
@ -13,7 +13,7 @@ height = "32"
i3_label = "%icon%" i3_label = "%icon%"
cpu_icon = "CPU:" cpu_icon = "CPU:"
ram_icon = "RAM:" ram_icon = "RAM:"
layout_icon = "KEY:" layout_icon = "KB:"
ws0_icon = "一" ws0_icon = "一"
ws1_icon = "二" ws1_icon = "二"
ws2_icon = "三" ws2_icon = "三"

@ -0,0 +1,28 @@
name = "Tokyo Night"
extends = "base"
[colors.base16]
[colors.terminal]
bg = "#1a1b26"
fg = "#c0caf5"
color0 = "#15161E"
color1 = "#f7768e"
color2 = "#9ece6a"
color3 = "#e0af68"
color4 = "#7aa2f7"
color5 = "#bb9af7"
color6 = "#7dcfff"
color7 = "#a9b1d6"
color8 = "#414868"
color9 = "#f7768e"
color10 = "#9ece6a"
color11 = "#e0af68"
color12 = "#7aa2f7"
color13 = "#bb9af7"
color14 = "#7dcfff"
color15 = "#c0caf5"
[custom]
vim_colorscheme = "vim.g.tokyonight_style = 'night'\nvim.cmd('colorscheme tokyonight')"

@ -130,9 +130,11 @@ return require('packer').startup(function()
} }
use { 'RRethy/nvim-base16' } use { 'RRethy/nvim-base16' }
use { 'NTBBloodbath/doom-one.nvim' } use { 'NTBBloodbath/doom-one.nvim' }
use { 'folke/tokyonight.nvim' }
use { 'marko-cerovac/material.nvim' }
-- Cursorline -- Cursorline
use { 'xiyaowong/nvim-cursorword' } -- use { 'xiyaowong/nvim-cursorword' }
-- use { 'yamatsum/nvim-cursorline' } -- use { 'yamatsum/nvim-cursorline' }
use { use {

@ -5,17 +5,17 @@ local lualine = require 'lualine'
-- Color table for highlights -- Color table for highlights
local colors = { local colors = {
bg = '#202328', bg = '{{colors.light_bg}}',
fg = '#bbc2cf', fg = '{{colors.fg}}',
yellow = '#ECBE7B', yellow = '{{colors.yellow}}',
cyan = '#008080', cyan = '{{colors.cyan}}',
darkblue = '#081633', darkblue = '{{colors.alt_blue}}',
green = '#98be65', green = '{{colors.green}}',
orange = '#FF8800', orange = '{{colors.orange}}',
violet = '#a9a1e1', violet = '{{colors.alt_magenta}}',
magenta = '#c678dd', magenta = '{{colors.magenta}}',
blue = '#51afef', blue = '{{colors.blue}}',
red = '#ec5f67' red = '{{colors.red}}'
} }
local conditions = { local conditions = {

@ -1,6 +1,6 @@
[colors] [colors]
background = {{colors.bg}} background = {{colors.bg}}
background-alt = {{colors.comment}} background-alt = {{colors.light_bg}}
foreground = {{colors.fg}} foreground = {{colors.fg}}
red = {{colors.red}} red = {{colors.red}}
green = {{colors.green}} green = {{colors.green}}

@ -6,11 +6,11 @@ extends = "base"
[custom.mono] [custom.mono]
font = "Iosevka Nerd Font" font = "Iosevka Nerd Font"
weight = "Medium" weight = "Medium"
bold = "Bold" bold = "Heavy"
italic = "Oblique" italic = "Oblique"
bold_italic = "Bold Oblique" bold_italic = "Heavy Oblique"
size = 14 size = 14
[custom.kitty] [custom.kitty]
font = "Iosevka" font = "Iosevka"
append = "Nerd Font Complete Monospace" append = "Nerd Font Complete"

Loading…
Cancel
Save