add bufferline nvim plugin
change alacritty font to nerdfont patched Hack
This commit is contained in:
parent
20a47f6756
commit
a930277e2b
4 changed files with 35 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
background = "0x282828";
|
||||
foreground = "0xebdbb2";
|
||||
};
|
||||
|
||||
normal = {
|
||||
black = "0x282828";
|
||||
red = "0xcc241d";
|
||||
|
@ -15,6 +16,7 @@
|
|||
cyan = "0x689d6a";
|
||||
white = "0xa89984";
|
||||
};
|
||||
|
||||
bright = {
|
||||
black = "0x928374";
|
||||
red = "0xfb4934";
|
||||
|
@ -26,4 +28,26 @@
|
|||
white = "0xebdbb2";
|
||||
};
|
||||
};
|
||||
|
||||
font = {
|
||||
normal = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
style = "Regular";
|
||||
};
|
||||
|
||||
bold = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
style = "Bold";
|
||||
};
|
||||
|
||||
italic = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
style = "Italic";
|
||||
};
|
||||
|
||||
bold_italic = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
style = "Bold Italic";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
strawberry
|
||||
gimp
|
||||
libreoffice
|
||||
(pkgs.nerdfonts.override { fonts = [ "Hack" ]; })
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -50,4 +51,6 @@
|
|||
identityPaths = [ "/home/pim/.ssh/age_ed25519" ];
|
||||
installationType = "systemd";
|
||||
};
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
}
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
luasnip
|
||||
cmp_luasnip
|
||||
nvim-treesitter.withAllGrammars
|
||||
bufferline-nvim
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ vim.o.signcolumn = "yes"
|
|||
vim.wo.number = true
|
||||
vim.wo.relativenumber = true
|
||||
vim.wo.cursorline = true
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
--[ LSPCONFIG ]--
|
||||
|
||||
|
@ -138,7 +139,8 @@ cmp.setup {
|
|||
},
|
||||
}
|
||||
|
||||
--[ TREESITTER ]---
|
||||
--[ TREESITTER ]--
|
||||
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = {},
|
||||
|
||||
|
@ -148,3 +150,7 @@ require('nvim-treesitter.configs').setup {
|
|||
|
||||
indent = { enable = true },
|
||||
}
|
||||
|
||||
--[ BUFFERLINE ]--
|
||||
|
||||
require("bufferline").setup{}
|
||||
|
|
Loading…
Reference in a new issue