Skip to content

Commit

Permalink
chore: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha2phi committed Jul 22, 2023
1 parent e4405c1 commit c3d40c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/base/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ return {
"folke/edgy.nvim",
event = "VeryLazy",
opts = {
bottom = {
{ ft = "qf", title = "QuickFix" },
left = {
{ ft = "hydra_hint", title = "Hydra", size = { height = 0.5 }, pinned = false },
},
},
},
Expand Down
2 changes: 2 additions & 0 deletions lua/pde/typescript.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ return {
if client.name == "tsserver" then
vim.keymap.set("n", "<leader>lo", "<cmd>TSToolsOrganizeImports<cr>", { buffer = bufnr, desc = "Organize Imports" })
vim.keymap.set("n", "<leader>lO", "<cmd>TSToolsSortImports<cr>", { buffer = bufnr, desc = "Sort Imports" })
vim.keymap.set("n", "<leader>lu", "<cmd>TSToolsRemoveUnused<cr>", { buffer = bufnr, desc = "Removed Unused" })
vim.keymap.set("n", "<leader>lz", "<cmd>TSToolsGoToSourceDefinition<cr>", { buffer = bufnr, desc = "Go To Source Definition" })
vim.keymap.set("n", "<leader>lR", "<cmd>TSToolsRemoveUnusedImports<cr>", { buffer = bufnr, desc = "Removed Unused Imports" })
vim.keymap.set("n", "<leader>lF", "<cmd>TSToolsFixAll<cr>", { buffer = bufnr, desc = "Fix All" })
vim.keymap.set("n", "<leader>lA", "<cmd>TSToolsAddMissingImports<cr>", { buffer = bufnr, desc = "Add Missing Imports" })
Expand Down

0 comments on commit c3d40c5

Please sign in to comment.