diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 23:35:19 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 23:35:19 +0200 |
| commit | dcc38607f207af8e2c0cebe36e49018929057f1b (patch) | |
| tree | 1847bda82ae7e247b371ca933aaf39fd134c315e /.config/nvim/after/plugin/colors.lua | |
| parent | ed82e4042b8bfc472a0796dedec1a9369e411cb8 (diff) | |
nvim: Format all the code with the lua LSP
Diffstat (limited to '.config/nvim/after/plugin/colors.lua')
| -rw-r--r-- | .config/nvim/after/plugin/colors.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/after/plugin/colors.lua b/.config/nvim/after/plugin/colors.lua index 654b217..e3d2d94 100644 --- a/.config/nvim/after/plugin/colors.lua +++ b/.config/nvim/after/plugin/colors.lua @@ -4,7 +4,7 @@ require('rose-pine').setup({ function SetTheme(color) vim.cmd.colorscheme(color or 'rose-pine') - vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) + vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' }) end |