Configure colorscheme in file, add cursorline

master
Drake 2 years ago
parent 04c1cd7ae7
commit 28a6c1edb6

@ -11,7 +11,8 @@ require('packer').startup(function()
use 'nvim-telescope/telescope.nvim'
use 'kyazdani42/nvim-tree.lua'
use 'lukas-reineke/indent-blankline.nvim'
use 'navarasu/onedark.nvim'
use 'sainnhe/sonokai'
use 'yamatsum/nvim-cursorline'
use 'nvim-treesitter/nvim-treesitter'
use {'ms-jpq/coq_nvim', branch = 'coq'}
use {'ms-jpq/coq.artifacts', branch = 'artifacts'}
@ -30,6 +31,6 @@ set.pumheight = 5
set.number = true
set.tabstop = 4
set.shiftwidth = 4
vim.cmd('colorscheme onedark') -- I would assume there would be a more lua-y way to do this... right?
require("colorscheme")
require("plugins")
require("keybinds")

@ -0,0 +1,6 @@
vim.g.sonokai_style = 'atlantis'
vim.g.sonokai_diagnostic_line_highlight = 1
vim.g.sonokai_diagnostic_virtual_text = 'colored'
vim.g.sonokai_current_word = 'underline'
vim.g.sonokai_better_performance = 1
vim.cmd('colorscheme sonokai')

@ -49,7 +49,7 @@ vim.cmd('COQnow -s')
require('lualine').setup {
options = {
icons_enabled = true,
theme = 'onedark',
theme = 'sonokai',
component_separators = {'', ''},
section_separators = {'', ''},
disabled_filetypes = {}

@ -92,7 +92,7 @@ _G.packer_plugins = {
["filetype.nvim"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/filetype.nvim",
url = "https://github.com/nathom/filetype.nvim"
url = "https://github.com/Ruthenic/filetype.nvim"
},
["indent-blankline.nvim"] = {
loaded = true,
@ -104,6 +104,11 @@ _G.packer_plugins = {
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/lualine.nvim",
url = "https://github.com/nvim-lualine/lualine.nvim"
},
["nvim-cursorline"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/nvim-cursorline",
url = "https://github.com/yamatsum/nvim-cursorline"
},
["nvim-gps"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/nvim-gps",
@ -129,11 +134,6 @@ _G.packer_plugins = {
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
url = "https://github.com/kyazdani42/nvim-web-devicons"
},
["onedark.nvim"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/onedark.nvim",
url = "https://github.com/navarasu/onedark.nvim"
},
["packer.nvim"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/packer.nvim",
@ -149,6 +149,11 @@ _G.packer_plugins = {
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/presence.nvim",
url = "https://github.com/andweeb/presence.nvim"
},
sonokai = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/sonokai",
url = "https://github.com/sainnhe/sonokai"
},
["telescope.nvim"] = {
loaded = true,
path = "/home/ruthenic/.local/share/nvim/site/pack/packer/start/telescope.nvim",

Loading…
Cancel
Save