aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/ide.pp
blob: 99f9112832689a0ebcafc268b7abc41cdd85d775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class nodo::utils::development::ide (
  $ensure = 'installed',
) {
  # In use
  package { [
    'mr',
    'stow',
    'hexedit',
    'ack-grep',
    'markdown',
    'python-sphinx',
    'pelican',
    'yamllint',
    'graphviz',
    #'ttyrec',
    #'bugs-everywhere',
    #'silversearcher-ag',
    #'ticgit',
    #'ticgitweb',
    #'ditz',
    #'pnopaste-cli',
    #'exuberant-ctags',
    #'doxygen',
    #'agave',
  ]:
    ensure => $ensure,
  }
}