diff --git a/README.md b/README.md index fe60338..2e36f1a 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,15 @@ - Lots of cli tools - Impermanence (everything except `~/stuff` & `~/projects` is wiped on reboot), `/` is a tmpfs. +## Nvim + + - Is configured through lua + - Plugins & LSP are configured in nix + - Everything is binary compiled at build time + - Everything is packed in a single plugin to optimize the runtimepath length + - A `.luarc.json` can be generated using `nix develop` + - The config can be used from anywhere using `nix run github:zoriya/flake#nvim` + ## Notes for myself diff --git a/flake.lock b/flake.lock index c888cbf..c12d2ee 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1735329054, - "narHash": "sha256-YHBIouh51UieVL5KHmdlQGaO/7wEgjpkyXnXLHaPJBo=", + "lastModified": 1735346012, + "narHash": "sha256-GJ00fcBs6TJl6R6Uw9f/NEWE3Wdo5C40Mu/CEhUmxv0=", "owner": "aylur", "repo": "astal", - "rev": "661b14cc893c5be17a4fce8fa269074785f57a36", + "rev": "ebcccc4ae13f690220374497f932f58ec5fd7cfd", "type": "github" }, "original": { @@ -281,11 +281,11 @@ ] }, "locked": { - "lastModified": 1735053786, - "narHash": "sha256-Gm+0DcbUS338vvkwyYWms5jsWlx8z8MeQBzcnIDuIkw=", + "lastModified": 1735343815, + "narHash": "sha256-p7IJP/97zJda/wwCn1T2LJBz4olF5LjNf4uwhuyvARo=", "owner": "nix-community", "repo": "home-manager", - "rev": "35b98d20ca8f4ca1f6a2c30b8a2c8bb305a36d84", + "rev": "b7a7cd5dd1a74a9fe86ed4e016f91c78483b527a", "type": "github" }, "original": { diff --git a/nvim/lua/plugins/line.lua b/nvim/lua/plugins/line.lua index 6f85c92..3bebe45 100644 --- a/nvim/lua/plugins/line.lua +++ b/nvim/lua/plugins/line.lua @@ -75,7 +75,7 @@ return { separator = '>', path = 0, symbols = { - modified = '[+]', + modified = '', readonly = '[-]', unnamed = '[No Name]', },