fix italics not working in tmux

This commit is contained in:
talksik
2023-10-31 14:47:40 -07:00
parent 71e8082ea2
commit 8a97e9920d
3 changed files with 10 additions and 3 deletions
-1
View File
@@ -26,7 +26,6 @@ lsp.configure('sumneko_lua', {
}
})
local cmp = require('cmp')
local cmp_select = { behavior = cmp.SelectBehavior.Select }
local cmp_mappings = lsp.defaults.cmp_mappings({
+7 -1
View File
@@ -1,10 +1,16 @@
vim.o.background = 'light'
require('solarized').setup({
-- theme = 'neo' -- or comment to use solarized default theme.
theme = 'default', -- or 'neo'
styles = {
comments = { italic = true, bold = false },
functions = { italic = true },
variables = { italic = false },
}
})
vim.cmd.colorscheme = 'solarized'
function test()
print('test')
end