update fixes
This commit is contained in:
parent
6d83c88757
commit
5b6c9ab92b
3 changed files with 23 additions and 22 deletions
|
@ -37,16 +37,16 @@ in {
|
|||
skanlite
|
||||
|
||||
#
|
||||
tor-browser-bundle-bin
|
||||
#(tor-browser-bundle-bin.overrideAttrs (old: rec {
|
||||
# version = "10.0.15";
|
||||
# name = "tor-browser-bundle-${version}";
|
||||
# src = pkgs.fetchurl {
|
||||
# url =
|
||||
# "https://dist.torproject.org/torbrowser/10.0.15/tor-browser-linux64-10.0.15_en-US.tar.xz";
|
||||
# sha256 = "1ah69jmfgik063f9gkvyv9d4k706pqihmzc4k7cc95zyd17v8wrs";
|
||||
# };
|
||||
#}))
|
||||
#tor-browser-bundle-bin
|
||||
(tor-browser-bundle-bin.overrideAttrs (old: rec {
|
||||
version = "10.5";
|
||||
name = "tor-browser-bundle-${version}";
|
||||
src = pkgs.fetchurl {
|
||||
url =
|
||||
"https://dist.torproject.org/torbrowser/10.5/tor-browser-linux64-10.5_en-US.tar.xz";
|
||||
sha256 = "1dq9jys60rn2w37dvb2a69gmqsi7278b782am14wci57kmajlpvm";
|
||||
};
|
||||
}))
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -113,11 +113,11 @@ in {
|
|||
terraform
|
||||
graphviz
|
||||
c-c++
|
||||
(haskell :variables
|
||||
haskell-enable-hindent t
|
||||
haskell-completion-backend 'lsp
|
||||
haskell-enable-hindent-style "gibiansky"
|
||||
haskell-process-type 'cabal-new-repl)
|
||||
;; (haskell :variables
|
||||
;; haskell-enable-hindent t
|
||||
;; haskell-completion-backend 'lsp
|
||||
;; haskell-enable-hindent-style "gibiansky"
|
||||
;; haskell-process-type 'cabal-new-repl)
|
||||
))))
|
||||
|
||||
(let
|
||||
|
@ -125,9 +125,10 @@ in {
|
|||
(setq
|
||||
dotspacemacs-additional-packages
|
||||
(append user-packages
|
||||
'( lsp-mode
|
||||
lsp-ui
|
||||
lsp-haskell
|
||||
'(
|
||||
;; lsp-mode
|
||||
;; lsp-ui
|
||||
;; lsp-haskell
|
||||
direnv
|
||||
))))
|
||||
'';
|
||||
|
@ -165,9 +166,9 @@ in {
|
|||
;; lsp setup for haskell
|
||||
;; hie-wrapper must be configured in the direnv setup
|
||||
;; make sure cabal update was executed once on the machine
|
||||
(setq lsp-haskell-process-path-hie "hie-wrapper")
|
||||
(setq lsp-response-timeout 60)
|
||||
(require 'lsp-haskell)
|
||||
;; (setq lsp-haskell-process-path-hie "hie-wrapper")
|
||||
;; (setq lsp-response-timeout 60)
|
||||
;; (require 'lsp-haskell)
|
||||
;; (add-hook 'haskell-mode-hook #'lsp)
|
||||
(add-hook 'haskell-mode-hook #'direnv-update-environment)
|
||||
|
||||
|
|
|
@ -519,7 +519,7 @@ myXPConfig =
|
|||
{ bgColor = Solarized.base03
|
||||
, fgColor = Solarized.base0
|
||||
, promptBorderWidth = 0
|
||||
-- , font = "xft:inconsolata:pixelsize=18:antialias=true:hinting=true"
|
||||
, font = "xft:DejaVu Sans:pixelsize=16:antialias=true:hinting=true"
|
||||
}
|
||||
|
||||
data LibNotifyUrgencyHook = LibNotifyUrgencyHook deriving (Read, Show)
|
||||
|
|
Loading…
Reference in a new issue