Compare commits
No commits in common. "7ac510cc5c3e4b771f66c4f2e6b3b27745b65aef" and "b37d41881605068cc134d700b59449acd0fb7f9b" have entirely different histories.
7ac510cc5c
...
b37d418816
@ -11,29 +11,26 @@
|
|||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
" syntax
|
# syntax
|
||||||
syntax enable
|
syntax enable
|
||||||
|
|
||||||
" color themes
|
# color themes
|
||||||
set termguicolors
|
set termguicolors
|
||||||
colorscheme molokai
|
colorscheme molokai
|
||||||
|
|
||||||
" wildcard mode
|
# wildcard mode
|
||||||
set wildmode=longest:full,full
|
set wildmode=longest:full,full
|
||||||
|
|
||||||
" remapping popup menu (command autocompletion)
|
# remapping popup menu (command autocompletion)
|
||||||
cnoremap <expr> <up> pumvisible() ? "<C-p>" : "<up>
|
set cnoremap <expr> <up> pumvisible() ? "<C-p>" : "<up>
|
||||||
cnoremap <expr> <down> pumvisible() ? "<C-n>" : "<down>"
|
set cnoremap <expr> <down> pumvisible() ? "<C-n>" : "<down>"
|
||||||
cnoremap <expr> <CR> pumvisible()? "<C-e>":"<CR>"
|
set cnoremap <expr> <CR> pumvisible()? "<C-e>":"<CR>"
|
||||||
" set line numbers
|
# set line numbers
|
||||||
set number
|
set number
|
||||||
|
|
||||||
" YouCompleteMe
|
# YouCompleteMe
|
||||||
let g:ycm_key_list_stop_completion = ['<C-y>', '<CR>']
|
let g:ycm_key_list_stop_completion = ['<C-y>', '<CR>']
|
||||||
let g:ycm_key_list_select_completion = ['<Up>', '<Down>', '<TAB>']
|
let g:ycm_key_list_select_completion = ['<Up>', '<Down>', '<TAB>']
|
||||||
|
|
||||||
" enable indent guides
|
|
||||||
let g:indent_guides_enable_on_vim_startup = 1
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
|
@ -39,9 +39,6 @@
|
|||||||
|
|
||||||
# lock screen
|
# lock screen
|
||||||
screensaver = [ "<Primary><Alt>l" ];
|
screensaver = [ "<Primary><Alt>l" ];
|
||||||
|
|
||||||
# disable screenshot
|
|
||||||
screenshot = [];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" =
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" =
|
||||||
|
@ -18,6 +18,9 @@ in {
|
|||||||
|
|
||||||
imports = [ ./git.nix ./gnome.nix ./zsh.nix ./code.nix ];
|
imports = [ ./git.nix ./gnome.nix ./zsh.nix ./code.nix ];
|
||||||
|
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "giulio";
|
home.username = "giulio";
|
||||||
@ -45,9 +48,6 @@ in {
|
|||||||
|
|
||||||
# reversing
|
# reversing
|
||||||
rizin
|
rizin
|
||||||
|
|
||||||
# networking
|
|
||||||
nmap
|
|
||||||
|
|
||||||
# development
|
# development
|
||||||
clang
|
clang
|
||||||
@ -64,9 +64,6 @@ in {
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
bind
|
bind
|
||||||
|
|
||||||
# system
|
|
||||||
gparted
|
|
||||||
|
|
||||||
# autostart
|
# autostart
|
||||||
albert_autostart
|
albert_autostart
|
||||||
|
Loading…
x
Reference in New Issue
Block a user