users/nvim: enable orgmode
This commit is contained in:
parent
b9aef9d2d2
commit
e23de12971
2 changed files with 59 additions and 4 deletions
61
flake.lock
61
flake.lock
|
@ -194,6 +194,23 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"hop-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1665333065,
|
||||
"narHash": "sha256-eBWzvdwbPlwArx7M8Q5mQtXVHASxo8CC/4ZIhBHd0vg=",
|
||||
"owner": "phaazon",
|
||||
"repo": "hop.nvim",
|
||||
"rev": "6591b3656b75ff313cc38dc662a7ee8f75f1c165",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "phaazon",
|
||||
"repo": "hop.nvim",
|
||||
"rev": "6591b3656b75ff313cc38dc662a7ee8f75f1c165",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"lspsaga-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -293,6 +310,7 @@
|
|||
"cmp-nvim-lsp": "cmp-nvim-lsp",
|
||||
"editorconfig-nvim": "editorconfig-nvim",
|
||||
"gitsigns-nvim": "gitsigns-nvim",
|
||||
"hop-nvim": "hop-nvim",
|
||||
"lspsaga-nvim": "lspsaga-nvim",
|
||||
"lualine-lsp-progress": "lualine-lsp-progress",
|
||||
"lualine-nvim": "lualine-nvim",
|
||||
|
@ -303,9 +321,11 @@
|
|||
],
|
||||
"nvim-cmp": "nvim-cmp",
|
||||
"nvim-lspconfig": "nvim-lspconfig",
|
||||
"nvim-orgmode": "nvim-orgmode",
|
||||
"nvim-tree-lua": "nvim-tree-lua",
|
||||
"nvim-treesitter": "nvim-treesitter",
|
||||
"nvim-web-devicons": "nvim-web-devicons",
|
||||
"org-bullets-nvim": "org-bullets-nvim",
|
||||
"plenary-nvim": "plenary-nvim",
|
||||
"tabby-nvim": "tabby-nvim",
|
||||
"telescope-live-grep-args-nvim": "telescope-live-grep-args-nvim",
|
||||
|
@ -314,11 +334,11 @@
|
|||
"utils": "utils_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1666169592,
|
||||
"narHash": "sha256-eham5z7CA44hWI5y4vORxdhE8tlJ3N2sI+9Wvx25VNc=",
|
||||
"lastModified": 1666470927,
|
||||
"narHash": "sha256-MeDZPYjq3IPikjCBuZBYHa3VRk+5+AOg6D7MFmvB26U=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "116764c3a0691324e38702d87ec4cc40ef7e494e",
|
||||
"revCount": 51,
|
||||
"rev": "b6f33bfb0336eaf646fd6ee85333fa30a5bc9cae",
|
||||
"revCount": 52,
|
||||
"type": "git",
|
||||
"url": "https://git.pleshevski.ru/mynix/neovim"
|
||||
},
|
||||
|
@ -433,6 +453,23 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nvim-orgmode": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1666428597,
|
||||
"narHash": "sha256-3/0hqJhZ7qBbZ79b5UwjcmQgwLu/J7YmD/8r8G0LB0A=",
|
||||
"owner": "nvim-orgmode",
|
||||
"repo": "orgmode",
|
||||
"rev": "806b8b9b81eaaf9b236f0a20d8e0486da23f448c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nvim-orgmode",
|
||||
"repo": "orgmode",
|
||||
"rev": "806b8b9b81eaaf9b236f0a20d8e0486da23f448c",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nvim-tree-lua": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -484,6 +521,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"org-bullets-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1660733415,
|
||||
"narHash": "sha256-LUp57b7QFDpxWkByOYLdKUi7YrARgl0JL8WNgHfHwjE=",
|
||||
"owner": "akinsho",
|
||||
"repo": "org-bullets.nvim",
|
||||
"rev": "345a351a387e957a5cb3b8072e96d748f4693540",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "akinsho",
|
||||
"repo": "org-bullets.nvim",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"plenary-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
|
|
@ -6,6 +6,7 @@ let
|
|||
vimAlias = true;
|
||||
enableDevIcons = true;
|
||||
enableTabby = true;
|
||||
enableOrgMode = true;
|
||||
grammarFileTypes = [
|
||||
"nix"
|
||||
"lua"
|
||||
|
@ -20,6 +21,7 @@ let
|
|||
"html"
|
||||
"pug"
|
||||
"ledger"
|
||||
"org"
|
||||
];
|
||||
};
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue