7

I use terminal and vim extensively, while writing code. I have created a color palette which is based on readability and easy-use with an autocomplete plugin(obtain plugins from Pydiction : Tab-complete your Python code, Auto Pairs : Insert or delete brackets, parens, quotes in pair. ).

I want to backup these settings so I can reuse them when I have problems with my current installation (12.04, by the way, I plan a clean Ubuntu 12.10 install in October). Are these settings are stored in a config file? Or if they are stored in gconf/dconf, how can I write a shell script to restore it?

lambda23
  • 3,362

1 Answers1

6

gnome terminal color palette details are stored under directory ~/.gconf/apps/gnome-terminal/profiles/

In Default directory you will be able to see a file named %gconf.xml. This file stores all palette related data. So you can backup all the files under directory ~/.gconf/apps/gnome-terminal/profiles/

To view the configurations: Open gconf-editor using dash and navigate to apps->gnome-terminal->Profiles->Default

For vim configuration backup, just use find or locate command to find .vimrc file and backup it

devav2
  • 37,290