You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
361 B
Lua

local g = vim.g
local createCmd = vim.api.nvim_create_autocmd
g.floaterm_width = 0.9
g.floaterm_height = 0.9
g.floaterm_autoclose = 1
g.floaterm_opener = 'edit'
g.floaterm_borderchars = '─│─│╭╮╯╰'
g.floaterm_title = ''
createCmd({ 'VimEnter' }, {
pattern = { '*' },
command = "highlight FloatermBorder guibg='#282828' guifg='#fbf1c7'",
})