Move nvim config to shared

This commit is contained in:
2024-06-08 14:14:26 -05:00
parent 4a914da23e
commit 0a8ded6db3
18 changed files with 278 additions and 24 deletions

View File

@@ -6,12 +6,7 @@ local plugins = {
'kylechui/nvim-surround',
{
'ibhagwan/fzf-lua',
config = function()
require('fzf-lua').setup({'skim'})
end
},
'neovim/nvim-lspconfig',
'hrsh7th/nvim-cmp',
@@ -21,9 +16,9 @@ local plugins = {
'rust-lang/rust.vim',
{
'windwp/nvim-autopairs',
event = 'InsertEnter',
opts={},
'windwp/nvim-autopairs',
event = 'InsertEnter',
opts={},
},
{

View File

@@ -35,6 +35,4 @@ vim.opt.completeopt=menuone,noselect
vim.opt.undofile=true
vim.g['loaded_perl_provider']=0
vim.g['python3_host_prog']='/usr/bin/python'

View File

@@ -14,7 +14,8 @@
homeDirectory = "/home/eesim";
};
home.file.".config/nvim".source = ./dotfiles/nvim;
home.file.".config/nvim".source = ../shared/dotfiles/nvim;
home.file.".tmux.conf".source = ../shared/dotfiles/tmux;
home.file.".config/waybar".source = ./dotfiles/waybar;
home.file.".config/fish/config.fish".source = ./dotfiles/fish/config.fish;