Compare commits
3 Commits
ebb96c9d5d
...
2ec5840781
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ec5840781 | ||
|
|
a4974d62fe | ||
|
|
0a9fa4fc03 |
@ -18,6 +18,15 @@ pkgs: {
|
|||||||
let mapleader = ','
|
let mapleader = ','
|
||||||
map <leader>n :lnext<CR>
|
map <leader>n :lnext<CR>
|
||||||
map <leader>p :lprev<CR>
|
map <leader>p :lprev<CR>
|
||||||
|
|
||||||
|
" Find files using Telescope command-line sugar.
|
||||||
|
nnoremap <leader>e <cmd>Telescope find_files<cr>
|
||||||
|
nnoremap <leader>g <cmd>Telescope live_grep<cr>
|
||||||
|
nnoremap <leader>b <cmd>Telescope buffers<cr>
|
||||||
|
nnoremap <leader>h <cmd>Telescope help_tags<cr>
|
||||||
|
" temporary fix for broken popup menu colors
|
||||||
|
" see here: https://github.com/nvim-telescope/telescope.nvim/issues/2145
|
||||||
|
hi NormalFloat ctermfg=LightGrey
|
||||||
'';
|
'';
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
#context-vim
|
#context-vim
|
||||||
@ -25,8 +34,8 @@ pkgs: {
|
|||||||
#fzf
|
#fzf
|
||||||
#gundo
|
#gundo
|
||||||
python-mode
|
python-mode
|
||||||
#telescope-nvim
|
telescope-nvim
|
||||||
#telescope-fzf-native-nvim
|
telescope-fzf-native-nvim
|
||||||
#nvim-treesitter
|
#nvim-treesitter
|
||||||
vim-nix
|
vim-nix
|
||||||
];
|
];
|
||||||
|
|||||||
@ -200,10 +200,12 @@
|
|||||||
system.stateVersion = "22.05"; # Did you read the comment?
|
system.stateVersion = "22.05"; # Did you read the comment?
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
maxJobs = 8;
|
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
};
|
};
|
||||||
settings.experimental-features = ["nix-command" "flakes"];
|
settings = {
|
||||||
|
experimental-features = ["nix-command" "flakes"];
|
||||||
|
max-jobs = 4;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user