-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucky Pony
committed
Dec 10, 2024
1 parent
5f7ba30
commit 9b56074
Showing
8 changed files
with
91 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
return { | ||
"mrcjkb/haskell-tools.nvim", | ||
version = "^3", | ||
ft = { "haskell", "lhaskell", "cabal", "cabalproject" }, | ||
dependencies = { | ||
{ "nvim-telescope/telescope.nvim", optional = true }, | ||
}, | ||
config = function() | ||
local ok, telescope = pcall(require, "telescope") | ||
if ok then | ||
telescope.load_extension("ht") | ||
end | ||
end, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
return { | ||
"folke/snacks.nvim", | ||
priority = 1000, | ||
lazy = false, | ||
opts = { | ||
-- your configuration comes here | ||
-- or leave it empty to use the default settings | ||
-- refer to the configuration section below | ||
bigfile = { enabled = true }, | ||
notifier = { enabled = true }, | ||
quickfile = { enabled = true }, | ||
statuscolumn = { enabled = true }, | ||
terminal = { | ||
win = { | ||
position = "float", | ||
}, | ||
}, | ||
toggle = { | ||
map = vim.keymap.set, -- keymap.set function to use | ||
which_key = true, -- integrate with which-key to show enabled/disabled icons and colors | ||
notify = true, -- show a notification when toggling | ||
-- icons for enabled/disabled states | ||
icon = { | ||
enabled = " ", | ||
disabled = " ", | ||
}, | ||
-- colors for enabled/disabled states | ||
color = { | ||
enabled = "green", | ||
disabled = "yellow", | ||
}, | ||
}, | ||
words = { enabled = true }, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters