Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Peters
b3d8020dab Allow longer file names to completely appear 2022-09-19 13:04:23 -07:00
Michael Peters
c3cbab752d add isort plugin 2022-09-19 11:56:07 -07:00
3 changed files with 13 additions and 4 deletions

View File

@ -23,7 +23,13 @@ function M.config()
options = {
close_command = "Bdelete! %d", -- use vim-bbye
right_mouse_command = "Bdelete! %d", -- use vim-bbye
offsets = { { filetype = "NvimTree", text = "", padding = 1 } },
offsets = {
{
filetype = "NvimTree",
text = "",
padding = 1
}
},
indicator = {
icon = '',
style = 'icon'
@ -35,9 +41,9 @@ function M.config()
show_close_icon = false,
left_trunc_marker = "",
right_trunc_marker = "",
max_name_length = 14,
tab_size = 20, -- minimum size
max_name_length = 40,
max_prefix_length = 13,
tab_size = 20,
show_tab_indicators = true,
enforce_regular_tabs = false,
view = "multiwindow",

View File

@ -19,7 +19,7 @@ function M.config()
sources = {
-- Set a formatter
formatting.prettierd,
formatting.black,
--formatting.black,
-- Set a linter
diagnostics.eslint_d,

View File

@ -162,6 +162,9 @@ packer.startup {
-- Remember your last place when opening a file
use { 'farmergreg/vim-lastplace' }
-- Import sorting for python (:Isort)
use { 'stsewd/isort.nvim', run = ':UpdateRemotePlugins' }
end,
config = {
display = {