From b2f86bbdf86d09db18407299793cf7b9851b8b27 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Thu, 27 Mar 2025 20:08:22 -0400 Subject: [PATCH] [UPDATED] final state for transfer --- lsd/config.yaml | 11 +---------- lua/plugins/langs/python.lua | 3 +-- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/lsd/config.yaml b/lsd/config.yaml index bea212d..2fcdcef 100644 --- a/lsd/config.yaml +++ b/lsd/config.yaml @@ -1,16 +1,7 @@ -# Add this function to $PROFILE in powershell -# function lsd { -# C:\Users\support\scoop\apps\lsd\current\lsd.exe --config-file C:\Users\support\AppData\Local\nvim\lsd\config.yaml @Args -# } +header: true layout: tree recursion: enabled: true depth: 1 total-size: true indicators: true -# blocks: -# - permission -# - size -# - date -# - name - diff --git a/lua/plugins/langs/python.lua b/lua/plugins/langs/python.lua index c58836e..da201d9 100644 --- a/lua/plugins/langs/python.lua +++ b/lua/plugins/langs/python.lua @@ -10,7 +10,7 @@ return { settings = { logLevel = "error", configuration = os.getenv("LOCALAPPDATA") .. "/nvim/ruff.toml", - configurationPreference = "filesystemFirst" + configurationPreference = "filesystemFirst", }, }, keys = { @@ -35,7 +35,6 @@ return { LazyVim.lsp.on_attach(function(client, _) client.server_capabilities.hoverProvider = true end, "basedpyright") - vim.api.nvim_set_hl(0, "@lsp.type.decorator.python", { link = "Normal" }) end, }, },