neovim plugins
This commit is contained in:
parent
eff7b60f4b
commit
3035a76f43
5 changed files with 49 additions and 8 deletions
|
@ -7,6 +7,7 @@
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./home_manager.nix
|
./home_manager.nix
|
||||||
|
(import <home-manager/nixos>)
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.tmp.useTmpfs = true;
|
boot.tmp.useTmpfs = true;
|
||||||
|
@ -106,14 +107,18 @@
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.neovim = {
|
# programs.neovim = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
vimAlias = true;
|
# vimAlias = true;
|
||||||
viAlias = true;
|
# viAlias = true;
|
||||||
defaultEditor = true;
|
# defaultEditor = true;
|
||||||
configure = {
|
# configure = {
|
||||||
customRC = builtins.readFile ./nvim/cfg.vim;
|
# customRC = builtins.readFile ./nvim/cfg.vim;
|
||||||
};
|
# };
|
||||||
|
# };
|
||||||
|
home-manager.users.root = {
|
||||||
|
home.stateVersion = "23.11";
|
||||||
|
imports = [ ./neovim ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
home-manager.users.catvayor = {
|
home-manager.users.catvayor = {
|
||||||
home.stateVersion = "23.11";
|
home.stateVersion = "23.11";
|
||||||
|
|
||||||
|
imports = [ ./neovim ];
|
||||||
|
|
||||||
xdg.configFile."sway/config".onChange = lib.mkForce "";
|
xdg.configFile."sway/config".onChange = lib.mkForce "";
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
28
neovim/default.nix
Normal file
28
neovim/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ pkgs, config, lib, ... }:
|
||||||
|
{
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
(nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars))
|
||||||
|
nvim-treesitter.withAllGrammars
|
||||||
|
vim-nix
|
||||||
|
|
||||||
|
telescope-nvim
|
||||||
|
todo-comments-nvim
|
||||||
|
|
||||||
|
fugitive
|
||||||
|
gitsigns-nvim
|
||||||
|
];
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
git
|
||||||
|
ripgrep
|
||||||
|
fd
|
||||||
|
gcc
|
||||||
|
];
|
||||||
|
extraConfig = builtins.readFile ./nvimrc;
|
||||||
|
extraLuaConfig = builtins.readFile ./nvim.lua;
|
||||||
|
vimAlias = true;
|
||||||
|
viAlias = true;
|
||||||
|
};
|
||||||
|
}
|
2
neovim/nvim.lua
Normal file
2
neovim/nvim.lua
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
local telescope = require('telescope')
|
||||||
|
telescope.setup {}
|
|
@ -81,6 +81,10 @@ set expandtab
|
||||||
|
|
||||||
syntax enable
|
syntax enable
|
||||||
|
|
||||||
|
nnoremap ff <cmd>Telescope find_files<cr>
|
||||||
|
nnoremap fg <cmd>Telescope live_grep<cr>
|
||||||
|
nnoremap fb <cmd>Telescope buffers<cr>
|
||||||
|
|
||||||
" let g:coqtail_nomap = 1
|
" let g:coqtail_nomap = 1
|
||||||
"
|
"
|
||||||
" function Coqfun(count, cmd)
|
" function Coqfun(count, cmd)
|
Loading…
Reference in a new issue