Fixed bugs and warnings.
This commit is contained in:
@@ -49,6 +49,18 @@ nix build '.?submodules=1#nixosConfigurations.vm.config.system.build.vm'
|
|||||||
./result/bin/run-nixos-vm
|
./result/bin/run-nixos-vm
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Emacs Debugging
|
||||||
|
|
||||||
|
When adding or debugging Emacs functionality, you can interact with the running Emacs session via `emacsclient` (with user permission):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Create and switch to a buffer
|
||||||
|
emacsclient -c -e '(switch-to-buffer (get-buffer-create "test"))'
|
||||||
|
|
||||||
|
# Evaluate arbitrary Elisp
|
||||||
|
emacsclient -e '(message "hello")'
|
||||||
|
```
|
||||||
|
|
||||||
## Code Style Guidelines
|
## Code Style Guidelines
|
||||||
|
|
||||||
### File Organization
|
### File Organization
|
||||||
|
|||||||
+1
-1
Submodule azos-core updated: 84ae266504...6d44344fd1
Generated
+4
-4
@@ -96,16 +96,16 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1774559029,
|
"lastModified": 1774647770,
|
||||||
"narHash": "sha256-deix7yg3j6AhjMPnFDCmWB3f83LsajaaULP5HH2j34k=",
|
"narHash": "sha256-UNNi14XiqRWWjO8ykbFwA5wRwx7EscsC+GItOVpuGjc=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "a0bb0d11514f92b639514220114ac8063c72d0a3",
|
"rev": "02371c05a04a2876cf92e2d67a259e8f87399068",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"ref": "release-25.11",
|
"ref": "master",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,8 +13,7 @@
|
|||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
# Follow corresponding `release` branch from Home Manager
|
url = "github:nix-community/home-manager/master";
|
||||||
url = "github:nix-community/home-manager/release-25.11";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ config.load_autoconfig(True)
|
|||||||
|
|
||||||
c.tabs.show = 'never'
|
c.tabs.show = 'never'
|
||||||
c.session.default_name = ''
|
c.session.default_name = ''
|
||||||
c.session.store_size = 0
|
c.auto_save.interval = 0
|
||||||
c.tabs.tabs_are_windows = True
|
c.tabs.tabs_are_windows = True
|
||||||
c.window.title_format = 'qute: {private}{host}{perc}{title_sep}{current_title}'
|
c.window.title_format = 'qute: {private}{host}{perc}{title_sep}{current_title}'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user