Created
December 21, 2023 23:03
-
-
Save leite/0742b6fcc6f44128ef207b55baf18ec8 to your computer and use it in GitHub Desktop.
enables crystal language highlighting in nvim & telescope preview
This file contains hidden or 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
-- after/plugin/plenary.lua | |
require('plenary.filetype').add_table({ | |
extension = { | |
cr = 'ruby' | |
} | |
}) |
This file contains hidden or 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
-- lua/leite/set.lua | |
vim.filetype.add({ | |
extension = { | |
cr = 'ruby' | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment