New onedrive module + various updates

This commit is contained in:
Filippo Berto 2021-09-13 16:06:18 +02:00
parent d304c4c65a
commit 286f70981b
7 changed files with 68 additions and 15 deletions

View file

@ -22,6 +22,8 @@ let
pythonPlugins = with pkgs.python38Packages; [
black
pyls-black
pyls-isort
pyls-mypy
python-language-server
];
javascriptPlugins = with pkgs; [
@ -146,15 +148,15 @@ in
set-face global error rgb:${normal.red},default
set-face global keyword rgb:${normal.blue},default
set-face global operator rgb:${normal.blue},default
set-face global attribute rgb:${dark.blue},default
set-face global attribute rgb:${bright.blue},default
set-face global comment rgb:${bright.blue},default
set-face global meta rgb:${normal.yellow},default
set-face global Default rgb:${normal.white},default
set-face global PrimarySelection rgb:${normal.black},rgb:${normal.white}
set-face global SecondarySelection rgb:${bright.white},rgb:${bright.black}
set-face global PrimaryCursor rgb:${dark.black},rgb:${normal.yellow}
set-face global SecondaryCursor rgb:${dark.black},rgb:${dark.white}
set-face global MenuForeground rgb:${dark.white},rgb:${dark.white}
set-face global PrimarySelection rgb:${normal.black},rgb:${dark.yellow}
set-face global SecondarySelection rgb:${normal.black},rgb:${dark.white}
set-face global PrimaryCursor rgb:${normal.black},rgb:${normal.yellow}
set-face global SecondaryCursor rgb:${normal.black},rgb:${normal.white}
set-face global MenuForeground rgb:${normal.white},rgb:${bright.black}
set-face global MenuBackground default,rgb:${normal.black}
set-face global MenuInfo default,rgb:${normal.black}
set-face global Information rgb:${dark.black},rgb:${normal.cyan}
@ -385,7 +387,7 @@ in
[language.python]
filetypes = ["python"]
roots = ["requirements.txt", "setup.py", ".git", ".hg"]
command = "${pkgs.python-language-server}/bin/pyls"
command = "${pkgs.python-language-server}/bin/python-language-server"
offset_encoding = "utf-8"
[language.python.settings]
# See https://github.com/palantir/python-language-server#configuration
@ -536,5 +538,4 @@ in
};
in
builtins.toPath "${desktopItem}/share/applications/kakoune.desktop";
}