More nvim tinkering
This commit is contained in:
parent
f148347f3c
commit
b9c1ab8ead
@ -189,6 +189,9 @@ nvimtree.setup {
|
|||||||
},
|
},
|
||||||
highlight_git = true,
|
highlight_git = true,
|
||||||
root_folder_modifier = ":t",
|
root_folder_modifier = ":t",
|
||||||
|
indent_markers = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
hijack_directories = {
|
hijack_directories = {
|
||||||
enable = true,
|
enable = true,
|
||||||
@ -226,7 +229,7 @@ nvimtree.setup {
|
|||||||
timeout = 500,
|
timeout = 500,
|
||||||
},
|
},
|
||||||
view = {
|
view = {
|
||||||
width = 30,
|
width = 35,
|
||||||
side = "left",
|
side = "left",
|
||||||
float = {
|
float = {
|
||||||
quit_on_focus_loss = true,
|
quit_on_focus_loss = true,
|
||||||
@ -276,14 +279,10 @@ require('bufferline').setup {
|
|||||||
close_icon = ' ',
|
close_icon = ' ',
|
||||||
left_trunc_marker = ' ',
|
left_trunc_marker = ' ',
|
||||||
right_trunc_marker = ' ',
|
right_trunc_marker = ' ',
|
||||||
--- name_formatter can be used to change the buffer's label in the bufferline.
|
max_name_length = 30,
|
||||||
--- Please note some names can/will break the
|
max_prefix_length = 30, -- prefix used when a buffer is de-duplicated
|
||||||
--- bufferline so use this at your discretion knowing that it has
|
|
||||||
--- some limitations that will *NOT* be fixed.
|
|
||||||
max_name_length = 18,
|
|
||||||
max_prefix_length = 15, -- prefix used when a buffer is de-duplicated
|
|
||||||
truncate_names = true, -- whether or not tab names should be truncated
|
truncate_names = true, -- whether or not tab names should be truncated
|
||||||
tab_size = 18,
|
tab_size = 25,
|
||||||
diagnostics = "nvim_lsp",
|
diagnostics = "nvim_lsp",
|
||||||
diagnostics_update_in_insert = false, -- only applies to coc
|
diagnostics_update_in_insert = false, -- only applies to coc
|
||||||
diagnostics_update_on_event = true, -- use nvim's diagnostic handler
|
diagnostics_update_on_event = true, -- use nvim's diagnostic handler
|
||||||
@ -317,9 +316,6 @@ require('bufferline').setup {
|
|||||||
reveal = {'close'}
|
reveal = {'close'}
|
||||||
},
|
},
|
||||||
sort_by = 'insert_after_current',
|
sort_by = 'insert_after_current',
|
||||||
pick = {
|
|
||||||
alphabet = "abcdefghijklmopqrstuvwxyzABCDEFGHIJKLMOPQRSTUVWXYZ1234567890",
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -363,3 +359,7 @@ require("gitsigns").setup {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
require("presence").setup({
|
||||||
|
debounce_timeout = 5, -- Number of seconds to debounce events (or calls to `:lua package.loaded.presence:update(<filename>, true)`)
|
||||||
|
})
|
||||||
|
@ -68,6 +68,8 @@ return packer.startup(function(use)
|
|||||||
|
|
||||||
use 'nvim-treesitter/nvim-treesitter'
|
use 'nvim-treesitter/nvim-treesitter'
|
||||||
|
|
||||||
|
use 'nvim-tree/nvim-web-devicons'
|
||||||
|
|
||||||
-- lualine (bottom line)
|
-- lualine (bottom line)
|
||||||
use {'nvim-lualine/lualine.nvim', requires = { 'nvim-tree/nvim-web-devicons', opt = true} }
|
use {'nvim-lualine/lualine.nvim', requires = { 'nvim-tree/nvim-web-devicons', opt = true} }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user