mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 13:45:58 +01: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 = {
|
||||
noice.enable = true;
|
||||
smartcolumn.enable = true;
|
||||
};
|
||||
|
||||
vim.assistant = {
|
||||
|
|
17
flake.lock
17
flake.lock
|
@ -1353,6 +1353,7 @@
|
|||
"rnix-lsp": "rnix-lsp",
|
||||
"rust-tools": "rust-tools",
|
||||
"scrollbar-nvim": "scrollbar-nvim",
|
||||
"smartcolumn": "smartcolumn",
|
||||
"sqls-nvim": "sqls-nvim",
|
||||
"tabular": "tabular",
|
||||
"telescope": "telescope",
|
||||
|
@ -1427,6 +1428,22 @@
|
|||
"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": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
|
|
@ -406,6 +406,11 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
smartcolumn = {
|
||||
url = "github:m4xshen/smartcolumn.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Note-taking
|
||||
obsidian-nvim = {
|
||||
url = "github:epwalsh/obsidian.nvim";
|
||||
|
|
|
@ -77,6 +77,7 @@ with lib; let
|
|||
"leap-nvim"
|
||||
"modes-nvim"
|
||||
"vim-repeat"
|
||||
"smartcolumn"
|
||||
];
|
||||
# You can either use the name of the plugin or a package.
|
||||
pluginsType = with types;
|
||||
|
|
Loading…
Reference in a new issue