dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

tags.py (360B)


      1 from talon import Context, Module
      2 
      3 mod = Module()
      4 
      5 tagList = [
      6     "debugger",
      7     "disassembler",
      8     "gdb",
      9     "git",  # commandline tag for git commands
     10     "ida",
     11     "tabs",
     12     "taskwarrior",  # commandline tag for taskwarrior commands
     13     "tmux",
     14     "windbg",
     15 ]
     16 for entry in tagList:
     17     mod.tag(entry, f"tag to load {entry} and/or related plugins ")