diff --git a/user/cursor/cursor.desktop b/user/cursor/cursor.desktop new file mode 100644 index 0000000..04ec82e --- /dev/null +++ b/user/cursor/cursor.desktop @@ -0,0 +1,15 @@ +[Desktop Entry] +Name=Cursor +Exec=/home/lelgenio/.local/bin/cursor --enable-features=UseOzonePlatform --ozone-platform-hint=wayland %F +Path=/home/lelgenio/.local/bin +Icon=/home/lelgenio/.icons/cursor.png +Type=Application +Categories=Utility;Development; +StartupWMClass=Cursor +X-AppImage-Version=latest +Comment=Cursor is an AI-first coding environment. +MimeType=x-scheme-handler/cursor; + + +[Desktop Action new-empty-window] +Exec=/home/lelgenio/.local/bin/cursor --enable-features=UseOzonePlatformc --ozone-platform-hint --new-window %F diff --git a/user/cursor/default.nix b/user/cursor/default.nix new file mode 100644 index 0000000..46d32c7 --- /dev/null +++ b/user/cursor/default.nix @@ -0,0 +1,20 @@ +{ + pkgs, + lib, + ... +}: +{ + options.cursor = { + enable = lib.mkEnableOption { }; + }; + + config = lib.mkIf config.cursor.enable { + home.file = { + "${config.home.homeDirectory}/.local/share/applications/cursor.desktop".source = ./cursor.desktop; + "${config.home.homeDirectory}/.config/Cusor/User/keybindings.json".source = + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/projects/nixos-config/user/cursor/keybindings.json"; + "${config.home.homeDirectory}/.config/Cursor/User/settings.json".source = + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/projects/nixos-config/user/cursor/settings.json"; + }; + }; +} diff --git a/user/cursor/keybindings.json b/user/cursor/keybindings.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/user/cursor/keybindings.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/user/cursor/settings.json b/user/cursor/settings.json new file mode 100644 index 0000000..08b5adb --- /dev/null +++ b/user/cursor/settings.json @@ -0,0 +1,34 @@ +{ + "terminal.integrated.sendKeybindingsToShell": true, + "window.titleBarStyle": "custom", + "workbench.preferredDarkColorTheme": "GitHub Dark", + "workbench.preferredLightColorTheme": "GitHub Light", + "window.autoDetectColorScheme": true, + "workbench.colorTheme": "GitHub Dark", + "git.autofetch": true, + "git.confirmSync": false, + "editor.suggest.snippetsPreventQuickSuggestions": false, + "update.mode": "none", + "intelephense.files.exclude": [ + "**/.git/**", + "**/.svn/**", + "**/.hg/**", + "**/CVS/**", + "**/.DS_Store/**", + "**/node_modules/**", + "**/bower_components/**", + "**/vendor/**/{Tests,tests}/**", + "**/.history/**", + "**/vendor/**/vendor/**", + "**/.direnv/**" + ], + "intelephense.format.braces": "k&r", + "window.commandCenter": 1, + "files.exclude": { + "**/.deps": true, + "**/.direnv": true + }, + "diffEditor.renderSideBySide": false, + "laravel-pint.enable": true, + "editor.formatOnSave": true +} \ No newline at end of file