This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-20
Channels
- # announcements (1)
- # asami (19)
- # beginners (6)
- # biff (1)
- # cljs-dev (3)
- # clojure (27)
- # clojure-europe (7)
- # clojure-gamedev (4)
- # clojure-hungary (47)
- # clojure-nl (5)
- # clojure-norway (29)
- # clojure-uk (5)
- # clojurescript (23)
- # data-science (1)
- # emacs (36)
- # events (3)
- # fulcro (22)
- # graphql (1)
- # gratitude (1)
- # introduce-yourself (3)
- # lsp (5)
- # nbb (7)
- # off-topic (68)
- # other-languages (2)
- # pathom (5)
- # reagent (4)
- # reitit (10)
- # remote-jobs (2)
- # reveal (2)
- # ring (1)
- # shadow-cljs (46)
- # spacemacs (15)
- # tools-deps (4)
emacs will open firefox, which i want, but it doesn't seem to be the same one that i open from my desktop. e.g i'm not logged in, no extensions, etc... any idea how i configure this? I see there is a "search" package, but that seems like overkill.
i must have two versions of firefox installed. lovely.
I used the search layer and set it to chrome. Better then what i had.
It's also possible that you have your own firefox profile. I use profiles on chrome to have completely different "user sessions" but only one system installation.
How would i go about integrating https://www.emacswiki.org/emacs/CfnLint with spacemacs? I droped those expressions (e.g (defin-dervied-mode cfn-yaml...
) in my dotfile's dotspacemacs/user-config
and restarted and i didn't get any linting in my yaml file that had the text AWSTemplateFormatVersion: "2010-09-09" at the top. So it doesn't seem to be working as i would expect.
could you use this? https://github.com/emacsmirror/cfn-mode
otherwise it looks like this spacemacs config from a while back sets up cfn-mode using the method you linked to https://gist.github.com/bleggett/89d288e370284ec083d7eb324253a4ef
personally I prefer using packages that already have that set up
it looks like this supports quite a bit https://github.com/emacsmirror/cfn-mode/blob/master/cfn-mode/cfn-mode.el
Thanks cora. Do you understand the configuration in cfn-mode? it just says this (flycheck-cfn-setup) .
I think the author assumes i know something i don't.
I think you'd need to (require 'flycheck-cfn) and then run that
i don't remember how spacemacs does custom packages, and how it handles running code after the package loads, but that's where to look
gotcha. thanks again.