Skip to content

Commit

Permalink
canged colour scheme to gh-dark-highcontrast
Browse files Browse the repository at this point in the history
  • Loading branch information
nicvagn committed Apr 4, 2024
1 parent 881fcb1 commit 4e00736
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 36 deletions.
1 change: 1 addition & 0 deletions init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require("core.options")
require("core.keymaps")
require("core.l-devorak-keymap")
require("core.autocmd")
require("core.lazy")
2 changes: 1 addition & 1 deletion lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"cmp-nvim-lua": { "branch": "main", "commit": "f12408bdb54c39c23e67cab726264c10db33ada8" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
"github-nvim-theme": { "branch": "main", "commit": "d92e1143e5aaa0d7df28a26dd8ee2102df2cadd8" },
"gitsigns.nvim": { "branch": "main", "commit": "70584ff9aae8078b64430c574079d79620b8f06d" },
"gruvbox.nvim": { "branch": "main", "commit": "6e4027ae957cddf7b193adfaec4a8f9e03b4555f" },
"harpoon": { "branch": "master", "commit": "ccae1b9bec717ae284906b0bf83d720e59d12b91" },
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
Expand Down
1 change: 1 addition & 0 deletions lua/core/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ set.smarttab = true -- 4 spaces are deleted on backspace

-- UI config
set.cursorline = true
set.cursorcolumn = true
set.termguicolors = true
set.colorcolumn = "96"
set.number = true -- show absolute number
Expand Down
12 changes: 12 additions & 0 deletions lua/plugins/github-nvim-theme.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
return {
'projekt0n/github-nvim-theme',
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('github-theme').setup({
-- ...
})

vim.cmd('colorscheme github_dark_high_contrast')
end,
}
35 changes: 0 additions & 35 deletions lua/plugins/gruvbox.lua

This file was deleted.

0 comments on commit 4e00736

Please sign in to comment.