Updates to theme & stuff
This commit is contained in:
@@ -55,7 +55,7 @@ return {
|
||||
{ '<leader>h', '<C-w>h', mode = { 'n', 'v' }, desc = 'Left' },
|
||||
{ '<leader>j', '<C-w>j', mode = { 'n', 'v' }, desc = 'Down' },
|
||||
{ '<leader>k', '<C-w>k', mode = { 'n', 'v' }, desc = 'Up' },
|
||||
{ '<leader>l', '<C-w>l', mode = { 'n', 'v' }, desc = 'Right' },
|
||||
{ '<leader>l', '<C-w>l', mode = { 'n', 'v' }, desc = 'Right' },
|
||||
},
|
||||
lazy = false,
|
||||
-----Instead of using `config`, you can use `opts` instead, if you'd like:
|
||||
@@ -83,15 +83,15 @@ return {
|
||||
enable_diagnostics = true,
|
||||
open_files_do_not_replace_types = { "terminal", "trouble", "qf" }, -- when opening files, do not use windows containing these filetypes or buftypes
|
||||
open_files_using_relative_paths = false,
|
||||
sort_case_insensitive = false, -- used when sorting files and directories in the tree
|
||||
--sort_function = nil, -- use a custom function for sorting files and directories in the tree
|
||||
sort_function = function (a,b)
|
||||
if a.type == b.type then
|
||||
return a.path > b.path
|
||||
else
|
||||
return a.type > b.type
|
||||
end
|
||||
end , -- this sorts files and directories descendantly
|
||||
sort_case_insensitive = true, -- used when sorting files and directories in the tree
|
||||
sort_function = nil, -- use a custom function for sorting files and directories in the tree
|
||||
--sort_function = function (a,b)
|
||||
--if a.type == b.type then
|
||||
--return a.path > b.path
|
||||
--else
|
||||
--return a.type > b.type
|
||||
--end
|
||||
--end, -- this sorts files and directories descendantly
|
||||
default_component_configs = {
|
||||
container = {
|
||||
enable_character_fade = true,
|
||||
@@ -185,7 +185,7 @@ return {
|
||||
commands = {},
|
||||
window = {
|
||||
position = "left",
|
||||
width = 35,
|
||||
width = 30,
|
||||
mapping_options = {
|
||||
noremap = true,
|
||||
nowait = true,
|
||||
|
Reference in New Issue
Block a user