Skip to content

Commit c05a93b

Browse files
author
Daimar Stein
committed
Fixed tiny colorscheme issue and improved terminal
1 parent 5725736 commit c05a93b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/config.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set.termguicolors = true
88
vim.g.colors_name = 'onedark'
99

1010
vim.cmd[[
11-
autocmd ColorScheme * hi StatusLine guifg=none guibg=none | hi StatusLineNC guifg=none guibg=none | hi FoldColumn guifg='#ABB2BF' guibg=none | hi BufferVisibleSign ='#1f1f1f'
11+
autocmd ColorScheme * hi StatusLine guifg=none guibg=none | hi StatusLineNC guifg=none guibg=none | hi FoldColumn guifg='#ABB2BF' guibg=none | hi BufferVisibleSign guibg='#1f1f1f'
1212
]] -- Change these highlights if you change the colorscheme
1313

1414
-- Clipboard

lua/mappings.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ map("", "<Down>", 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', expr_opts)
3232
map("", "<Up>", 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', expr_opts)
3333

3434
-- Ctrl+t to open an integrated terminal in a split, like other IDEs
35-
map('n', '<C-t>', ':split | resize 15 | set nonumber norelativenumber | terminal<CR>a', {silent = true})
35+
map('n', '<C-t>', ':split | resize 15 | set nonumber norelativenumber | terminal<CR>:set nobuflisted<CR>a', {silent = true})
3636
map('t', '<C-a>','<C-\\><C-n>', opts) -- Ctrl+a to exit terminal mode
3737

3838
-- Auto-formatting with Neoformat

0 commit comments

Comments
 (0)