dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit f4b7fe8ec1006272ff58fbb52aa668bd89082f6f
parent 4e6bc27444ef6a623184afef3b3edae12db44592
Author: Chris Bracken <chris@bracken.jp>
Date:   Mon, 13 May 2024 22:39:54 -0700

Install solarized-osaka colorscheme

This behaves well in iTerm2, but not in the default Terminal.app. Will
see how happy I am with it after a week.

Diffstat:
M.config/nvim/init.vim | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim @@ -7,6 +7,9 @@ if has("autocmd") endif call plug#begin() +" Colour scheme. +Plug 'craftzdog/solarized-osaka.nvim' + " Formatting. Plug 'rhysd/vim-clang-format' " clang-format. Plug 'vim-scripts/spacehi.vim' " Highlight bad whitespace. @@ -92,6 +95,7 @@ nmap <leader>sjn :.-1r ~/.config/nvim/snippets/journal.md<CR> if &t_Co > 2 syntax enable set background=dark + colorscheme solarized-osaka " No background colour in terminal. hi Normal ctermbg=none