mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-26 15:06:45 +00:00
feat: add smartcolumn to plugin imputs
This commit is contained in:
parent
a924958762
commit
a6f2dbe4d2
4 changed files with 24 additions and 0 deletions
|
@ -160,6 +160,7 @@ inputs: let
|
||||||
|
|
||||||
vim.ui = {
|
vim.ui = {
|
||||||
noice.enable = true;
|
noice.enable = true;
|
||||||
|
smartcolumn.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.assistant = {
|
vim.assistant = {
|
||||||
|
|
17
flake.lock
17
flake.lock
|
@ -1353,6 +1353,7 @@
|
||||||
"rnix-lsp": "rnix-lsp",
|
"rnix-lsp": "rnix-lsp",
|
||||||
"rust-tools": "rust-tools",
|
"rust-tools": "rust-tools",
|
||||||
"scrollbar-nvim": "scrollbar-nvim",
|
"scrollbar-nvim": "scrollbar-nvim",
|
||||||
|
"smartcolumn": "smartcolumn",
|
||||||
"sqls-nvim": "sqls-nvim",
|
"sqls-nvim": "sqls-nvim",
|
||||||
"tabular": "tabular",
|
"tabular": "tabular",
|
||||||
"telescope": "telescope",
|
"telescope": "telescope",
|
||||||
|
@ -1427,6 +1428,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"smartcolumn": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1679417638,
|
||||||
|
"narHash": "sha256-DjPWBOLbzdfOQAx+6xgV1CD5NKuP1N6An2lmHNHd39Q=",
|
||||||
|
"owner": "m4xshen",
|
||||||
|
"repo": "smartcolumn.nvim",
|
||||||
|
"rev": "0c572e3eae48874f25b74394a486f38cadb5c958",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "m4xshen",
|
||||||
|
"repo": "smartcolumn.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"sqls-nvim": {
|
"sqls-nvim": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
|
@ -406,6 +406,11 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
smartcolumn = {
|
||||||
|
url = "github:m4xshen/smartcolumn.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
# Note-taking
|
# Note-taking
|
||||||
obsidian-nvim = {
|
obsidian-nvim = {
|
||||||
url = "github:epwalsh/obsidian.nvim";
|
url = "github:epwalsh/obsidian.nvim";
|
||||||
|
|
|
@ -77,6 +77,7 @@ with lib; let
|
||||||
"leap-nvim"
|
"leap-nvim"
|
||||||
"modes-nvim"
|
"modes-nvim"
|
||||||
"vim-repeat"
|
"vim-repeat"
|
||||||
|
"smartcolumn"
|
||||||
];
|
];
|
||||||
# You can either use the name of the plugin or a package.
|
# You can either use the name of the plugin or a package.
|
||||||
pluginsType = with types;
|
pluginsType = with types;
|
||||||
|
|
Loading…
Reference in a new issue