Better telescope setup
This commit is contained in:
parent
8e89a53a31
commit
7ada064c93
9 changed files with 123 additions and 124 deletions
dotfiles/neovim/ftplugin
|
@ -1,4 +1,5 @@
|
|||
local arpeggio = require("my.plugins.arpeggio")
|
||||
local A = require("my.abbreviations")
|
||||
|
||||
print("Initializing nix keybinds...")
|
||||
|
||||
|
@ -11,3 +12,14 @@ arpeggio.chordSilent("n", "vb", ":VimuxRunCommand \"clear && spago build\"<CR>",
|
|||
{ settings = "b" })
|
||||
|
||||
vim.opt.expandtab = true -- Use spaces for the tab char
|
||||
|
||||
local abbreviations = {
|
||||
{ "land", "/\\" },
|
||||
{ "lor", "\\/" },
|
||||
{ "tto", "->" },
|
||||
{ "iip", "=>" },
|
||||
{ "frl", "forall" },
|
||||
{ "ott", "<-" } -- opposite of tto
|
||||
}
|
||||
|
||||
A.manyLocalAbbr(abbreviations)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue