diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-06-06 23:53:46 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-06-06 23:53:46 +0200 |
| commit | 3376c72eb9f31ef7230a1dad6c67449321d1ae78 (patch) | |
| tree | fc75d34d62c4c7801b3fbde9b6894023d261ee2a /.config/nvim/lua/plugins/colorscheme.lua | |
| parent | 0065ad03faa55f79bfe03cbd48cea9ed144f8733 (diff) | |
| parent | 37badfc0238b672179ae726009c5b4956911dff9 (diff) | |
| download | dotfiles-3376c72eb9f31ef7230a1dad6c67449321d1ae78.tar.gz dotfiles-3376c72eb9f31ef7230a1dad6c67449321d1ae78.zip | |
Merge commit '2486b56228678b1b730e4bdfcbfe14397e62125f'
Diffstat (limited to '.config/nvim/lua/plugins/colorscheme.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/colorscheme.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/nvim/lua/plugins/colorscheme.lua b/.config/nvim/lua/plugins/colorscheme.lua index bf588cf..10f0432 100644 --- a/.config/nvim/lua/plugins/colorscheme.lua +++ b/.config/nvim/lua/plugins/colorscheme.lua @@ -1,7 +1,7 @@ -- Colorscheme -- Available colorschemes: --- [[ nightfly ayu onedark doom-one nvimgelion github_dark ]] -local colorscheme = "nightfly" +-- [[ nightfly ayu onedark doom-one nvimgelion github_dark tokyonight ]] +local colorscheme = "tokyonight-night" local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not status_ok then vim.notify("colorscheme " .. colorscheme .. " not found!") @@ -27,6 +27,7 @@ end vim.api.nvim_command("syntax on") vim.api.nvim_command("highlight Normal guibg=none") +vim.api.nvim_command("highlight NormalNC guibg=none") vim.api.nvim_command("highlight SignColumn guibg=none") --vim.api.nvim_command("highlight FoldColumn guibg=none") --vim.api.nvim_command("highlight CursorLineSign guibg=none ctermbg=NONE") |
