Compare commits

..

No commits in common. "d652f6543ac2c74c3af87f0c6b03fae0343ab451" and "feb9aac2d44e61c1f5fd814aee7e8e5343493034" have entirely different histories.

2 changed files with 13 additions and 5 deletions

View File

@ -928,7 +928,7 @@ tab_bar_margin_height 3.0 0.0
#tab_bar_style powerline
#tab_powerline_style slanted
tab_bar_style custom
tab_bar_style custom
#: The tab bar style, can be one of:

View File

@ -36,7 +36,7 @@ require("lazy").setup({
{ "ojroques/nvim-osc52" },
{ "nvim-tree/nvim-tree.lua" },
{ "jeffkreeftmeijer/vim-numbertoggle" },
{ "lukas-reineke/indent-blankline.nvim", main="ibl", opts={} },
{ "lukas-reineke/indent-blankline.nvim" },
{ "phaazon/hop.nvim" },
{ "echasnovski/mini.nvim", version = "*" },
{ "mg979/vim-visual-multi", branch = "master" },
@ -182,9 +182,7 @@ vim.keymap.set("n", "<leader>fh", builtin.help_tags, {})
vim.opt.termguicolors = true
require("nvim-tree").setup({
sort = {
sorter = "name",
},
sort_by = "case_insensitive",
view = {
width = 22,
},
@ -253,6 +251,16 @@ vim.opt.listchars:append("multispace: ⋅ ⋅ ⋅ ⋅ ⋅ ⋅")
vim.opt.listchars:append("leadmultispace:⋅ ⋅ ")
vim.opt.listchars:append("trail:␣")
require("indent_blankline").setup({
space_char_blankline = " ",
char_highlight_list = {
"IndentBlanklineIndent1",
},
space_char_highlight_list = {
"IndentBlanklineIndent1",
},
})
function _G.set_terminal_keymaps()
local opts = { buffer = 0 }
-- vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts)